How to modify a lookup field-type to use checkbox instead of radiobutton?

How to modify a lookup field-type to use checkbox instead of radiobutton?
I would like to modify the behavior for the lookup field.
Normally you get a screen where it is possible to search through a lookup. The items resulted from the search are listed as radiobutton items. Therefore you can select only one at the time to be added.
Is it possible to have the items to be listed as checkbox instead? So that you can check multiple items and therefore be able to add multiple items at the time?
For example:
To add the user to 10 different groups on MS-AD.
It is desired to have the ability to check multiple groups to be added instead only one at the time.
My client would like to use this feature in many other situations.

Displaying will not be a big deal but with that you have to customize the action class and its working as well.

Similar Messages

  • How to set field type choice using csom (c#)

    I have a field type: Choice (menu to choose from) which is not multichoice. How do I set a value?
    I have found code for multiple choice but it doesn't seem to work for single choice.

    Hi,
    The following code snippet for your reference:
    newListItem["ChoiceFieldName"] = "ChoiceValue";
    newListItem.Update();
    clientContext.Load(newListItem);
    clientContext.ExecuteQuery();
    If you are assigning a Value which is not in the Choice Column, You need to create a choice value then assign it to the item.
    More information is here:
    http://sharepoint.stackexchange.com/questions/124999/how-to-set-field-type-choice-using-csom-c
    Best Regards
    Dennis Guo
    TechNet Community Support

  • How to updateControlValue of lookup custom type field via javascript (JSLink) ?

    I found in context - fieldSchema - Choices - array with lookup items, so i created new object with lookupid and lookupvalue and pushed into Choices. But after update control value i found what fieldValue: "1218;#"; while in  context
    - fieldSchema - Choices - array my Object [LookupId: 1218; LookupValue: "Dion"]; 
    Out of array LookupValue always null. Any idea?

    Hi,
    The following links would be helpful:
    Setting values of SharePoint Lookup field
    http://snipplr.com/view/30179/setting-values-of-sharepoint-lookup-field/
    Sharepoint 2013. Multivalue lookup field with JavaScript
    http://stackoverflow.com/questions/22694749/sharepoint-2013-multivalue-lookup-field-with-javascript
    Best Regards,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]
    Unfortunatly it is not what i need. 
    Let me explain, i trying to make cross site lookup field. So for now i made javaScript file and overrided JSLInk parameter. 
    I want to made it clear for sharepoint and followed clientforms.debug.js practice. 
    in clientforms.debug.js they used updateControlValue method for update fieldValue. So, i use this method for insert my own lookup object to field value. And main problem - updating field value such as the string  "5233;#HelpMePlz". 
    Cuz after method updateControlValue sharepoint not save my own object.LookupValue  (HelpMePlz), sharepoint only save object.LookupId (5233). I
    need someone who has already done something similar and can explain the subtleties of working with a client side rendering (JSLink) & lookup field. If any know how to do it write plz here or mail me ([email protected]). its realy important to me,thx.

  • How to Change the Value Field Type of a Value Field

    Hi,
    How can I change the value field type from Currency to Quantity of a value field? I have tried to do it in KEA6. I can change the value field and its description, but not the value field type from currency to qty. If I change this config, is there any other changes that I need to make so there is no side issue of this change?

    Hi Prem,
    Once you created value field as quantity or currency, you can not change this nature of value field. Based on this, system creates lots of data and tables. For this reason system will not allow any changes in quantity or currency.
    Alternative way is to remove the old value field and  create a new value field assign to operating concern and put all your seetings.
    Please let me know if you require any clarifications.
    Thank you,
    Regards,
    Santosh
    Reward points if helpful.

  • How to change Table Cell Field Type Dynamically?

    Hi All,
    I am fetching some news data from backend DB and displaying them in a WD Table. Now one News Item may or may not have a URL behind it. If I find the URL as null then I want to display the news as simple TextView otherwise as LinkToUrl. How can I change this input type dynamically for each row in the runtime?
    If I use LinkToUrl all the time then the items which has URL as null gets displayed as normal text, but they are of very faint color and I can not change the text design. Whether if I user TextView I can set some text design like Header2, Header 3 etc.
    Can anybody please help with some code block? My main requirement is how to change the table cell input type dynamically.
    Thanks in Advance.
    Shubhadip

    Hi Shubhadip,
    This is the sample code for creating and adding a table cell editor table dynamically.
    public static void wdDoModifyView
    (IPrivateDynamicTableCreationView wdThis, IPrivateDynamicTableCreationView.IContextNode wdContext, com.sap.tc.webdynpro.progmodel.api.IWDView view, boolean firstTime)
    //@@begin wdDoModifyView
    /*** 1.Create Table **/
    IWDTable table =
    (IWDTable) view.createElement(IWDTable.class, "table1");
    table.setWidth("100%");
    table.setVisibleRowCount(data.length);
    /*** 2.Create nameColumn **/
    IWDTableColumn nameColumn =
    (IWDTableColumn) view.createElement(IWDTableColumn.class, "Name");
    IWDCaption colHeader =
    (IWDCaption) view.createElement(IWDCaption.class, "NameHeader");
    colHeader.setText("–¼‘O");
    nameColumn.setHeader(colHeader);
    IWDTextView nameViewer =
    (IWDTextView) view.createElement(IWDTextView.class, "NameViewer");
    nameViewer.bindText(nameAtt);
    IWDTableCellEditor editor = (IWDTableCellEditor) nameViewer;
    nameColumn.setTableCellEditor(editor);
    table.addColumn(nameColumn);
    IWDTableColumn nationalityColumn =
    (IWDTableColumn) view.createElement(
    IWDTableColumn.class,
    "Nationality");
    IWDTableCellEditor nationalityEditor =
    (IWDTableCellEditor) nationalityViewer;
    nationalityColumn.setTableCellEditor(nationalityEditor);
    table.addColumn(nationalityColumn);
    /** 3. Bind context to table **/
    table.bindDataSource(nodeInfo);
    //@@end
    Bala
    Kindly reward appropriate points.

  • How to create repeating rows field type in visual studio for sharepoint

    HI
         I would like to check if there is any work around for the repeating rows field
    type other than buying 3rd party tool or using info path, Because i have SharePoint foundation server.
    Thanks

    Hello,
    You can use repeater control in custom webpart where you can add multiple details similar to repeating table:
    http://www.c-sharpcorner.com/Blogs/10913/add-dynamic-row-using-repeater.aspx
    Correct me if i misunderstood you
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • HT5449 How do I get Dictation to type a full-stop instead of the word "period"?

    How do I get Dictation to type punctuation? The support article says that you just have to speak it in order for it to appear but I just get one long run-on sentence with the word "period" many times in the middle.

    Try the alternatives: "point," "dot," and/or "full stop." Do any of these options produce a period for you? And, as a different punctuation test, does something such as "comma" work for you?

  • How to find out portlet instance type without using PortletInstanceInternal

    Does anyone know how to find out the instance type of a portlet using the API? The instance type corresponds to INSTANCE_TYPE column in PF_PORTLET INSTANCE table.

    Does anyone know how to find out the instance type of a portlet using the API? The instance type corresponds to INSTANCE_TYPE column in PF_PORTLET INSTANCE table.

  • How to create a LookUp field, selecting a value from another record type ??

    Hello all,
    I am looking to create a new field in Opportunity in CRM On Demand where we can give the user an option to select one of the records. Data in this search applet should come from another Record Type in CRM On Demand. I am not able to find any similar literature in the Help books.
    I would appreciate if somebody could give me real life steps please.
    Thanks a lot

    Okay. I found the solution to this.
    Now, along with this single reference, we also wish to bring the values of some more joined fields from the other record type in the Opportunities screen.
    We were hoping that the Default value, and using fx, we should be able to achieve this using "joinedfieldvalue". However, it's not bringing back any value. Our expression is -
    JoinFieldValue('<CustomObject3>',[<CustomObject3Id>],'<stState_ITAG>')
    Please help if you have done this before.
    Thanks & Regards

  • How to modify state of fields on screen in PCUI through BADI

    Hi,
    Is there any way to modify the state of screen fields(such as greying out the fields) in PCUI, when a SAP backend BADI is being triggered??
    Appreciate if sample codes or programming guides can be given if you have.
    Thanks a lot!!!

    I guess the links below should help in your problem ..
    http://www.saptechies.com/how-to-create-table-maintenance-generator/
    Window size on SM30
    If these do not please tell ..
    Regards,
    Manthan

  • How to modify CRT currency field

    Hi all,
    i am new to ABAP HR so please help me. i am trying to modify the CRT internal table when run the payroll. the situation is that we have a company code currency in SAR and there is an employee who gets the currency in USD. I have to store the data in CRT in the currency in which the employee is getting paid.
    i tried the following the but it is not working:
             LOOP AT crt.
              crt-amt_curr = v_emp_currency.
              MODIFY crt.
            ENDLOOP.
    the above code copies the currency USD to CRT, but when it is displayed in the Payroll log, it is in SAR. I hope somebody has understood the problem. please help.
    regards,
    hamza

    I saw your code :
    LOOP AT crt.
    crt-amt_curr = v_emp_currency.
    MODIFY crt.
    ENDLOOP.
    Just check the value in debugging ,whether it modifying value modify statemnt ?
    if it is modifying then somewhere in the program ,the value gets changed again..
    Please confirm..
    Reward Points if it is helpful
    Thanks
    Seshu

  • FB70  how to modify  the Reference field

    Dear experts,
    In FB70  Customer Invoice entry, If I want to put several Invoice reference in the Reference field  for tracking of  Agents Commission,  Is any report generation possible for Sales Commission
    Thanks
    Mdas

    Hi
    Sales Agent Comission can be better tracked using a std SAP functionality called rebates. Here in you can accrue Rebates with every billing document. For eg, you need to give a comission to sales agent, if the sales reach USD 100 in a month, that can be set up through the SD Pricing procedure and the corresponding assignment in VKOA.
    Refer the link
    http://help.sap.com/saphelp_46c/helpdata/en/5d/363eb7583f11d2a5b70060087d1f3b/content.htm
    Consult your SD Colleague for further info
    Regards
    Sanil Bhandari

  • How to get person picker field to return as email instead of a string when emailing in a workflow?

    Hi, I have 3 person fields in Infopath 2013 form.  In the Form Option, Property Promotion, each of these people picker field, i selected the DisplayName,
    give it a column name and selected the Merge under Function.  
    In the workflow I created for this form.  Depending on selection from a radio button and a dropdown controls, I would email to one or 2 of the people selected
    from the people picker controls mentioned above.  
    In the Email To field, I select "Workflow Lookup for a User", select the field that I promoted (mentioned above), but the "Return field as"
    field is grey out, disabled. It doesn't allow the option to return as an email. I suspect it's because the 3 properties were promoted as concatenated string?  
    Now when my workflow is run, the workflow is immediately canceled.  I suspect it's the problem with the email field.  How can I promote a Person Picker
    field so it will return a email address when I use it in the email to user function in workflow?
    Thank you.

    The control I use is a Person/Group Picker.  I tried in Property Promotion selecting either DisplayName, AccountID or even the PCPerson but none of them would give me the "Return Field As" field enabled to select to return as email.   It stays
    as grey out, disabled, and return as string.  
    I suspect this is also why I'm not getting the email when workflow starts.  Where can I check if an email is sent?  I have it sent to myself, by selecting myself in the Person/Group picker but I haven't received any emails.
    Thank you.

  • How to create an indexed field (Duplicates OK) using VBA

    I used the following code to check to see if a field exist and if it does not exist one created. How can I expand this to not only create the field but also create an index (Duplicates OK).
    Regards, Jim
    Sub AddFldSect4_4()
    Call FieldExists("DisplayOrder", "Section4_4")
    End Sub
    Function FieldExists(ByVal fieldName As String, ByVal tableName As String) As Boolean
    Const gcfHandleErrors As Boolean = True
    If gcfHandleErrors Then On Error GoTo Error_Handler
    Dim db As Database
    Dim tbl As TableDef
    Dim fld As Field
    Dim strName As String
    Set db = CurrentDb
    Set tbl = db.TableDefs(tableName)
    For Each fld In tbl.Fields
    If fld.Name = fieldName Then
    FieldExists = True
    Exit For
    End If
    Next
    If FieldExists = False Then
    Call addColumn(tableName, fieldName)
    End If
    Error_Handler_Exit:
    On Error Resume Next
    Exit Function
    Error_Handler:
    MsgBox "The following error has occured." & vbCrLf & vbCrLf & _
    "Error Number: " & err.Number & vbCrLf & _
    "Error Source: Field Exist" & vbCrLf & _
    "Error Description: " & err.Description, _
    vbCritical, "An Error has Occured!"
    Resume Error_Handler_Exit
    End Function
    Public Sub addColumn(tableName As String, fieldName As String)
    Const gcfHandleErrors As Boolean = True
    If gcfHandleErrors Then On Error GoTo Error_Handler
    Dim strField As String
    Dim curDatabase As Object
    Dim tblTest As Object
    Dim fldNew As Object
    Set curDatabase = CurrentDb
    Set tblTest = curDatabase.TableDefs(tableName)
    strField = fieldName
    Set fldNew = tblTest.CreateField(strField, dbInteger)
    tblTest.Fields.Append fldNew
    Error_Handler_Exit:
    On Error Resume Next
    Exit Sub
    Error_Handler:
    MsgBox "The following error has occured." & vbCrLf & vbCrLf & _
    "Error Number: " & err.Number & vbCrLf & _
    "Error Source: Add Col" & vbCrLf & _
    "Error Description: " & err.Description, _
    vbCritical, "An Error has Occured!"
    Resume Error_Handler_Exit
    End Sub
    jim neal

    I used the following code to check to see if a field exist and if it does not exist one created. How can I expand this to not only create the field but also create an index (Duplicates OK).
    Hi Jim,
    I give you a couple of examples that I use to create or delete indexes. They are "heavily parametrized", so they can be used for every table using any fields. Study your Help for further information on "Create Index", and others.
    tmp_db.Execute "CREATE INDEX " & cur_veldnaam & " ON " & cur_item & "_tbl (" & cur_type & ")" & " WITH PRIMARY" tmp_db.Execute "CREATE UNIQUE INDEX " & cur_veldnaam & " ON " & cur_item & "_tbl (" & cur_velden & ")" '& " WITH PRIMARY" tmp_db.Execute "DROP INDEX " & cur_keynaam & " ON " & cur_item & "_tbl"
    tmp_db stands for the BE-database; cur_item & "_tbl" represents the table name.
    Imb.

  • How Can I parse a complex type WSDL using WSDL4J?

    I cannot parse the element Area---helppppppppppp
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions targetNamespace="http://testfinal" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://testfinal" xmlns:intf="http://testfinal" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <wsdl:types>
    <schema targetNamespace="http://testfinal" xmlns="http://www.w3.org/2001/XMLSchema">
    <element name="x" type="xsd:string"/>
    <complexType name="Area">
    <sequence>
    <element name="f" type="xsd:int"/>
    <element name="fo" type="xsd:int"/>
    </sequence>
    </complexType>
    <element name="f" type="impl:Area"/>
    <element name="getSampleReturn" type="xsd:string"/>
    <element name="sample" type="xsd:string"/>
    </schema>
    </wsdl:types>
    <wsdl:message name="getSampleRequest">
    <wsdl:part element="impl:x" name="x"/>
    <wsdl:part element="impl:f" name="f"/>
    </wsdl:message>

    FYI, many folks on these forums are behind corporate firewalls that won't allow access to that sort of site. Particularly when the amount of code is small, as it is here, you're better off posting it in the forum
    create or replace procedure myProcedure( i int ) is
      TYPE mapx IS TABLE OF NUMBER INDEX BY VARCHAR2(64);
      TYPE mapy IS TABLE OF mapx INDEX BY VARCHAR2(64);
      instanceOfMapx mapx;
      instanceOfMapy mapy;
    begin
        instanceOfMapx('Australia') := 30000000;
        instanceOfMapy('val1'):=instanceOfMapx;
        dbms_output.put_line('hi');
        /* i want here that in my procedure return this instanceOfMapy */
    end myProcedure;If you want to modify that to return an instance of MAPY
    1) You'll need to declare MAPX and MAPY in a package so that they can be referenced in multiple places
    2) You'll need to add an OUT parameter to your procedure
    The smallest change that would work would be
    CREATE OR REPLACE PACKAGE map_pkg
    AS
      TYPE mapx IS TABLE OF NUMBER INDEX BY VARCHAR2(64);
      TYPE mapy IS TABLE OF mapx INDEX BY VARCHAR2(64);
    END map_pkg;
    create or replace procedure myProcedure( i IN integer, instanceOfMapy OUT map_pkg.mapy )
    is
      instanceOfMapx map_pkg.mapx;
    begin
        instanceOfMapx('Australia') := 30000000;
        instanceOfMapy('val1'):=instanceOfMapx;
        dbms_output.put_line('hi');
        /* i want here that in my procedure return this instanceOfMapy */
    end myProcedure;Of course, practically, I'd expect that you'd likely want to move myProcedure into the package you created.
    Justin

Maybe you are looking for

  • How can I export a keynote proyect to a movie?

    I am making an assigment for the university and I don't know how to export a keynote presentation to a movie, ( with short videos and narration inside of it ). I tried quicktime export and it didin't work , the whole timing thing was awful! I really

  • How many devices can I link to AirPort Extreme?

    How many devices can I linked to an AirPort Extreme.  It seems that whenever I have more than 3 devices (all iPhone and iPad), I can't link the fourth one.

  • Calendar won't open after upgrading to Mountain Lion 10.8.2

    After I upgraded my late 2011 macbook pro to mountain lion yesterday Calendar won't open. It pops up for a second then this problem report comes up: Process:         Calendar [1989] Path:            /Users/USER/Desktop/Calendar.app/Contents/MacOS/Cal

  • Arabic translation pasted into InDesign from Google Translate?

    When I copy from Google Translate, paste into InDesign, and convert to Geeza Pro (an Arabic font in InDesign), the characters come in reverse order. Example in English: Google Translate = WEATHER (correct). After it's pasted into Indesign and convert

  • Transport STANDARD TEXT KEY from CA10

    Hi ,       Is it possible to transport the STANDARD TEXT KEY created in CA10? Please give your suggestion on how it can be done or is it advisable to create entries in each client manually. Thank you.