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
Hi,
We dont have the list of contextmenu names but you can check it by debug the menuObject.Items.
Best Regards,
Gordon Tumewu
Hi Dasha,
You can turn off the tooltip by setting the DisplayToolTip property to False. Or you can change the content of the tooltip at
<ISWebDesktop:WebMenuItem AccessKey="n" Name="mnuNewWindow" Tooltip="Test" OnClick="NewWindow" Text="New Window">
Hope this helps.
I am really sorry but in your first post you said that:
I want to accomplish a simple task with the WebCombo control. Create the object, configure it, assign the data source and have it render. Now when I click on it to pull it down, I do NOT want it to post back. I want it to be pre-filled already.
and if I am not mistaken the WebCombo sample that I sent before have the same behaviour, it will load the data at the first time and when you click to pull it down the postback did not occured. You can see it in my video before.
Please correct me if I am wrong, do you experience the postback everytime you click the dropdown in my sample? Or do you experience the issue in your application only?
Best Regards.
Hi Yousif,
I am sorry I dont have priviledge to cancel the mark as answer, but I have added note that the post is not the right answer, and if we have found the correct answer I will put the answer in the post.
For the solution that I gave you before, I have test it and didn't found any postback to the server accept for the first time the WebCombo load. Here I attached video on how I debug using the sample that I provided to you before.
I am sorry about my previous statement that unbound WebCombo cannot have value, afer checking again we have PopulateUnbound method that can bind WebCombo like unbound but still use the datatable as the datasource. Here I attached my simple sample, using this sample the WebCombo will have Text and Value field.
Note: This solution has not approved yet by the customer, this will be the solution once the customer has aggree first.
You can use the following code in OnRowContextMenu client side event:
function WebGrid1_OnRowContextMenu(controlId, rowType, rowElement, menuObject) { var WebGrid1 = ISGetObject(controlId); menuObject.Items.GetNamedItem("mnuHelp").Hide(); menuObject.Items.GetNamedItem("mnuRefresh").Text = "Refresh"; return true; }
Hi Vince,
This is the procedure to reinstall all your application:
Wow, that's horrible. You guys need to add this feature for bound combo boxes. How can you force the user to post back when they may have an application that doesn't need it for small data sets? Also, you need to add the ability to have value/text pairing in unbound combo boxes. I mean this is a simple thing that's easily achieved with an asp.net combo and an html combo.
Yeap, that's why we provided unbound mode, that's why customer that have small data set can load all the data at the load time. And yes it is true that this simple thing easily achieved with asp.net combo but as I said before our WebCombo behaviour is different than asp.net dropdownlist because we have the filtering feature that's why our development team design it to be flypostback.
Yes, it is true, the WebCOmbo behaviour is different than the dropdownlist, if you used the bound WebCombo then the everytime you click the dropdown the flypostback will occured. If you want the WebCombo to load on the first time like dropdownlist then you need to use the Unbound webcombo but then again the value will not be supported.
You need to set the page cache. Here is the code snipprt, you can put it in page_load, I am using c# as the code:
Response.Cache.SetCacheability(HttpCacheability.NoCache); TextBox1.Text = DateTime.Now.ToString();
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