User Profile & Activity

Martin Lie Support
martin@intersoftsolutions.com
Page
of 43
Posted: November 5, 2010 4:43 AM

Hello Andre,

Yes, you can implement a template to use your own control in UXStackButton. We called the template itself as StackGridTemplate.

For more information on how to use StackGridTemplate, please refer to Intersoft ClientUI Documentation. It is located in Start Menu >> All Programs >> Intersoft WebUI Studio 2010 R1 SP1 >> WebUI Studio for Silverlight 4 >> Intersoft ClientUI Documentation (Visual Studio 2010).

Open the documentation file and select ClientUI Controls >> Control Library >> Button Controls Overview >> UXStackButton. Scroll down the content until you find Using StackGridTemplate section.

Hope this helps. Thank you.

-Martin-

Posted: November 5, 2010 3:58 AM

Hello,

I'm afraid that WebCombo 2.0 has now been discontinued for several years and there are not going to be any further updates for it. We have introduced WebCombo 4.0 that has been enhanced to provide more powerful features to implement user scenario without any hassle.

However, I have attached a sample file that used WebCombo 4.0 for your reference.

By default, WebCombo only retrieves value in DataTextField and DataValueField. By using OnAfterItemSelected Client-side event, you can configure WebCombo to retrieve the values in each column when you are in multiple columns mode.

Use the following Javascript code to retrieve values in each column:

function WebCombo1_OnAfterItemSelected(controlId)
{
   var WebCombo1 = ISGetObject(controlId);
   var SelectedRow = WebCombo1.GetSelectedRow();
   var CellLength = SelectedRow.cells.length;

   for (var i = 0; i < CellLength; i++) 
   {
      alert(SelectedRow.cells[i].innerText);
   }
   return true;
}

Hope this helps. Thank you.

Posted: November 3, 2010 11:17 PM

Hi Ellen,

When the content exceeds the combo box's length, it will create an ellipsis text by default. That's why you need to set the align using the property that you've found.

Anyway, glad to hear you have resolved the problem. Should you further questions, please do not hesitate to contact us and we will be glad to assist you.

Thank you.

Posted: November 3, 2010 12:56 AM

You can simply edit the resources color using edit event when you run WebScheduler sample. Once you have entered the edit event window, then you can edit the resource color from the selected resource in real time. It will update the resource color along with its event.

Could you describe what you want to achieve when editing resources color using javascript? If we use javascript, you can only modify the resources color, but the changes in event's color will not be reflected.

Thank you.

Posted: November 3, 2010 12:01 AM

Hello,

We do have a set of Server-side and Client-side references in Intersoft WebCombo Documentation. It is located in Start Menu >> All Programs >> Intersoft WebUI Studio 2010 R1 SP1 >> WebUI Studio for ASP.NET >> WebCombo 4 >> WebCombo 4 Documentation (Visual Studio 2008).

Or, you can simply access to the following link:
C:\Program Files\Common Files\microsoft shared\Help 9\dexplore.exe" /helpcol ms-help://ISNet.WebUI.WebCombo.V4

Once you have opened the documentation, you can directly expand Server-side and Client-side References nodes in order to view the complete set of WebCombo's references. From there, you can find the attribute needed for your scenario.

However, I am not really clear when you mentioned that the selected row is aligned to the right by default. As you can see from the screenshot attached, the selected row is already aligned to the left by default.

WebCombo 

Thank you.

All times are GMT -5. The time now is 12:29 PM.
Previous Next