iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
Glad to know that set ResultBoxWindowType to Normal resolve the reported problem.
Should you need further assistance or run into any problems regarding our controls, feel free to post it into our forum. We would be happy to assist you again.
Crosslight Form Builder includes editor types that commonly used in mobile business apps, such as: button, checkbox, radio, password field, picker, date, time, etc. For more detail, kindly check the article, Supported Editor Types, in Crosslight Documentation which lists the editor types available in Crosslight.
Crosslight Form Builder also allows developer to use their own custom control in the form builder. The easiest way to implement your own custom editor is through the view resource. A view resource is comprised of a XIB file that represents the interface definition of the view, and a class that wraps the XIB file. The first step is specifying the custom control definition in the form metadata attribute, then create the counterpart in the iOS project. At runtime, Form Builder automatically resolve the specified custom editor and instantiate your class to be consumed in the generated form.
This section, Using Custom Editor, in Understanding iOS Form Builder article shows the steps to create a custom control that shows a map and a progress bar that appear in the middle of the data form.
You can try to run the Form Builder sample project and navigate to Editors > Image Picker. It represents an editable image view which provides user interface to capture photo from camera or choose from the existing photo albums.Or navigate to Date or Time Picker which provides user interface that allows users to pick a date or time value - represented in a light modal.
Hope this helps.
I created a simple sample of unbound WebCombo created programmaticallly. The sample page is enclosed as attachment (ProgrammaticUnboundWebComboSample.zip). The combo specification is as follow:
The reported problem, the arrow of the combo disappears, doesn't occur. Viewing the page in IE 11 and the drop down arrow of WebCombo appear without any problem. I also tried to click the arrow and select an item.
I noticed that the drop down arrow of WebCombo disappear after user select an item if the page is viewed in compatibility view. Please ensure that the page is not viewed in compatibility view.
If the problem still persist, please modify ProgrammaticUnbound sample until the problem can be replicated. Have the sample sent back to us to be investigated further.
... Please consider including all webgrid dependencies in the patches.
Thank you for your message regarding the content of WebGrid's hotfix.
I have forwarded your feedback to the WebGrid development team. They consider to include all WebGrid dependencies, in this case is: WebDesktop resources assembly, into the WebGrid hotfix.
Thank you again for your valuable feedback. Look forward to serving your future needs.
If you still have difficulties to obtain the latest WebDesktop resources assembly, please feel free to let me know.
I have seen another similar thread in here which mentions same problem and ASPNET-187 raised for this.
ASPNET-187 was reported by Dimitris B in the following thread: WebCombo integrated with WebGrid on IE11.
If you are experiencing this issue when create WebCombo programmatically, set the ResultBoxWindowType of WebCombo's LayoutSettings to Normal should resolve the problem.
I modified Programmatic.aspx sample of WebCombo by adding a line of code in combo_InitializeLayout LayoutEventHandler and find that the reported problem is no longer persist.
protected void combo_InitializeLayout(object sender, LayoutEventArgs e) { // Setup Behavior WebCombo combo = (WebCombo)sender; combo.DataTextField = "ContactName"; combo.DataValueField = "CustomerID"; combo.LayoutSettings.ResultBoxWindowType = DisplayType.Normal; }
Please let me know if you have different result.
We have re-installed the windows and successfully installed the Intersoft Framework and its working fine.
Glad to hear that the reported problem is no longer persist after re-install Windows.
But we are unable to Deploy the Android application in AVD Emulators and it's working only with Device. Kindly let us know the procedure to deploy application in AVD Emulators.
More information is needed to find out what is causing the problem. For example:
I'm willing to advise you further but in order to do so I would need you to elaborate on your specific scenario by creating a new ticket/thread that discuss about how to debug on Android emulator.
Thank you and have a nice day.
I recommend you to try to re-install Windows and let me hear the result. Based on your information, I believe that my test PC has identical configuration with yours:
I have tried different combinations and then clicking next in "Please select the product edition " dialog. Everything works as expected.
Please feel free to let us know if the problem still persist after re-install Windows.
Glad to know that the snippet code helps.
I use following JavaScript snippet code as an alternate solution of "Copy Table". The code has been tested on a simple WebGrid layout and it works as expected.
function CopyTableToClipBoard() { var grid = ISGetObject("WebGrid1"); var rootTable = grid.RootTable; var gridTableElement = rootTable.GetElement(WG40.BODY, WG40.HTMLTABLE); var colHeaderElement = rootTable.GetElement(WG40.COLHEADER, WG40.HTMLTABLE).rows[0]; var c = ""; if (colHeaderElement) { for (var b = 0; b < colHeaderElement.cells.length; b++) { var a = colHeaderElement.cells[b]; if (a.type == "Column") { c += a.innerText + "\t"; } } } if (c != "") { c = c.substring(0, c.length - 1) + "\n"; } for (var i = 0; i < gridTableElement.rows.length; i++) { var rowElement = gridTableElement.rows[i]; if (wgIsRecordRow(rowElement)) { c += WGMenuEngine.CopyRow(rootTable, rowElement, true); } } wgCopyToCB(c); return true; }
Please let me know if this works for you too.
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname