User Profile & Activity

Gordon Tumewu Support
Page
of 19
Posted: November 13, 2009 3:09 AM

Hi,

We dont have the list of contextmenu names but you can check it by debug the menuObject.Items. 

Best Regards,

Gordon Tumewu

Posted: November 13, 2009 2:54 AM

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.

Best Regards,

Gordon Tumewu

Posted: November 11, 2009 11:52 PM

Hi,

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.

Gordon Tumewu

Posted: November 11, 2009 2:19 AM

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.

 

Best Regards,

Gordon Tumewu

Posted: November 8, 2009 10:28 PM

Hi Yousif,

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.

Best Regards,

Gordon Tumewu

Note: This solution has not approved yet by the customer, this will be the solution once the customer has aggree first.

Posted: November 6, 2009 4:12 AM

Hi,

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;
}

Best Regards,

Gordon Tumewu

Posted: November 6, 2009 3:22 AM

Hi Vince,

This is the procedure to reinstall all your application:

  • Delete all your license using LicenseManager.
  • Uninstall the component
  • Remove the Intersoft Solutions folder in c://ProgramFiles.
  • Make sure IntersoftSolutions folder deleted from registry HKLM >> Software.
  • Make sure c://windows/assembly clear from all intersoft files.
  • Try to reinstall.

Hope this helps.

Best Regards,

Gordon Tumewu

Posted: November 5, 2009 9:20 PM

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.

Posted: November 5, 2009 4:38 AM

Hi,

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.

Best Regards,

Gordon Tumewu

Posted: November 4, 2009 11:26 PM

Hi,

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();

Best Regards,

Gordon Tumewu

All times are GMT -5. The time now is 2:32 AM.
Previous Next