Hi,
We are using SmartGwt-4.0 pro edition.
We have a requirement separating two groups in SelctItem.
Example :
SelectItem selectOtherItem = new SelectItem("filter", "Filter");
LinkedHashMap<String, String> filterMap = new LinkedHashMap<String, String>();
Group-1
---------------------------------
filterMap.put("filter0", "Filter 0");
filterMap.put("filter1", "Filter 1");
filterMap.put("filter2", "Filter 2");
Group-2
-----------------------------------
filterMap.put("create", "Create New");
filterMap.put("edit", "Edit");
selectOtherItem.setValueMap(filterMap);
In SelctItem Filter 1 , Filter 2, Filter 3,... Filter-n are dynamically adding while creating new("Create New").
As we mentioned above, we want to separate Group-1 and Group-2 with a DOTTED LINE.
This DOTTED LNE can not be selectable and it should be just a separator.
We checked with SmartGwt API, but we didn't found.
Is there any property to achieve this ?
Please give us a solution.
Please find the attached screenshot.
Thanking you.
We are using SmartGwt-4.0 pro edition.
We have a requirement separating two groups in SelctItem.
Example :
SelectItem selectOtherItem = new SelectItem("filter", "Filter");
LinkedHashMap<String, String> filterMap = new LinkedHashMap<String, String>();
Group-1
---------------------------------
filterMap.put("filter0", "Filter 0");
filterMap.put("filter1", "Filter 1");
filterMap.put("filter2", "Filter 2");
Group-2
-----------------------------------
filterMap.put("create", "Create New");
filterMap.put("edit", "Edit");
selectOtherItem.setValueMap(filterMap);
In SelctItem Filter 1 , Filter 2, Filter 3,... Filter-n are dynamically adding while creating new("Create New").
As we mentioned above, we want to separate Group-1 and Group-2 with a DOTTED LINE.
This DOTTED LNE can not be selectable and it should be just a separator.
We checked with SmartGwt API, but we didn't found.
Is there any property to achieve this ?
Please give us a solution.
Please find the attached screenshot.
Thanking you.
Comment