[CLOSED] TagField: cannot override default delimiter

  1. #1

    [CLOSED] TagField: cannot override default delimiter

    I've been working with the tagField and trying to override the delimiter to a different value since my data contains or could contain ",".

    X.TagField().Flex(1).ID("displayRecordDocSource").FieldLabel("Doc Source").LabelWidth(70).MultiSelect(true).QueryMode(DataLoadMode.Local)
    .HideTrigger(false).HideSelected(true).Editable(false).TypeAhead(false).StoreID("storeDocumentSource").DisplayField("Text").ValueField("Value")
    .GrowMax(100).Delimiter("|").EmptyText("Select all document source").Listeners(l => {l.Change.Handler = "App.fieldsetBulkSelect.doLayout();";})
    the resulting values always are separated by a comma.
    example:
    Documents,Charts,Notes
    Since some of my data contains comma within
    "Documents","Progress Notes (Allen, F)","Chat_Direction","Progress Labs (LABS, A)"
    I would need to have a different separator, such as
    Documents|Progress Notes (Allen, F)|Chat_Direction|Progress Labs (LABS, A)
    Can you please verify that the default delimiter cannot be set to something other than a ",". I'm trying to use "|" the pipe.
    Thanks for you assistance.
    Russ
    Last edited by Daniil; Feb 04, 2014 at 8:30 AM. Reason: [CLOSED]
  2. #2
    Hi @rsnead,

    Please use a TagLabelConfig's TagsDelimeter.

    <ext:TagField runat="server">
        <TagLabelConfig TagsDelimeter="|" />
    </ext:TagField>
  3. #3
    Now a TagField's Delimiter if defined is used as a TagsDelimeter. But a TagLabelConfig's TagsDelimeter is still in priority.

    The change has been done in the trunk, revision #5646. It will go to the v2.5 release.
  4. #4
    Thanks Daniil,

    I have configured using TagLabelConfig. Everything working appropriately. thank you for updating the trunk.
    Thanks
    Russ

Similar Threads

  1. Replies: 3
    Last Post: Jan 31, 2014, 5:06 AM
  2. [CLOSED] TagField shape of the header of the combo changed
    By FpNetWorth in forum 2.x Legacy Premium Help
    Replies: 3
    Last Post: Jan 21, 2014, 11:20 AM
  3. [CLOSED] Simple Tagfield from Codebehind.
    By waxby in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Jan 06, 2014, 2:51 PM
  4. [CLOSED] Sample on how to override default tree node check box
    By RCM in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Nov 06, 2013, 10:31 PM
  5. Replies: 2
    Last Post: Oct 25, 2013, 2:49 AM

Posting Permissions