User Profile & Activity

Andi Santoso Support
Page
of 53
Posted: January 19, 2010 1:44 AM

Hi George,

     Thank you for your running sample code, I am able to replicate the issue. I have fowarded this to our developer team and I will inform you as soon as it ready on our hotfix.

     I hope it helps and please, do not hesitate to ask if you have any other questions. Thank you.

Best Regards,

Andi Santoso

Posted: January 18, 2010 10:22 PM

Hi Tenika,

     So sorry to tell you, but multiple row selection can not be used alongside with RowChecker feature, as both features will cause conflict and undesired effect to the selection result. You should enable only one of those two. For further infomation, we have it described on our doc at "ms-help://ISNet.WebUI.WebGrid.V7/ISNet.WebUI.WebGrid/Multiple Row Selection.html".

     I hope it helps and please let me know if you have any other questions. Thank you.

Best Regards,

Andi Santoso

Hi Maged,

     Glad to hear that your problem is fixed and thank you for your information as well. Please do not hesitate to ask if you have any other questions. Thank you.

Best Regards,

Andi Santoso

Posted: January 17, 2010 11:25 PM

Hi Ewoudt,

     Actually, that is a default behaviour of WebSpellChecker. After you ignore any one particular wrong word, you need to click on the spellcheck button again to move to the next wrong word. However, if you run our sample (WebTextEditor->SpellChecker->WebSpellChecker With ASP.Net TextBox Control), you will see that once you ignore, it will move to the next wrong word.

     I hope it helps and please, do not hesitate to ask if you have any other questions. Thank you.

Best Regards,

Andi Santoso

Posted: January 17, 2010 11:00 PM

Hi Nicolas,

     Based on your scenario, I believe that it would be better if we used OnRowSelect client side event. Because on OnCellClick client event, there is no object has been retrieved. It will get the cell object only instead of its row. But instead, when you use OnRowSelect client side event, you can get the row object and get the cell by its named item.

     Here is the snippet of it:

function WebGrid1_OnRowSelect(controlId, tblName, rowIndex, rowEl)
		{
		    var grid = ISGetObject(controlId);
		    var SelectedObject = grid.GetSelectedObject();
		    var RowObject = SelectedObject.ToRowObject();
		    var cells = RowObject.GetCells();
		        
		    alert(cells.GetNamedItem("Discontinued").Value);
			
			return true;
		}

 

Posted: January 17, 2010 11:00 PM

Hi Nicolas,

     Based on your scenario, I believe that it would be better if we used OnRowSelect client side event. Because on OnCellClick client event, it will get the cell object only instead of its row. But, when you use OnRowSelect client side event, you can get the row object and get the cell by its named item.

     Here is the snippet of it:

          function WebGrid1_OnRowSelect(controlId, tblName, rowIndex, rowEl)
		{
		    var grid = ISGetObject(controlId);
		    var SelectedObject = grid.GetSelectedObject();
		    var RowObject = SelectedObject.ToRowObject();
		    var cells = RowObject.GetCells();
		        
		    alert(cells.GetNamedItem("Discontinued").Value);
			
			return true;
		}

      Just for your information, check box only return a value of true or false. It does not contain any text. I hope it helps and please, do not hesitate to ask if you have any other questions. Thank you.

Best Regards,

Andi Santoso

Posted: January 17, 2010 11:00 PM

Hi Nicolas,

     Based on your scenario, I believe that it would be better if we used OnRowSelect client side event. Because on OnCellClick client event, there is no object has been retrieved. It will get the cell object only instead of its row. But instead, when you use OnRowSelect client side event, you can get the row object and get the cell by its named item.

     Here is the snippet of it:

function WebGrid1_OnRowSelect(controlId, tblName, rowIndex, rowEl)
		{
		    var grid = ISGetObject(controlId);
		    var SelectedObject = grid.GetSelectedObject();
		    var RowObject = SelectedObject.ToRowObject();
		    var cells = RowObject.GetCells();
		        
		    alert(cells.GetNamedItem("Discontinued").Value);
			
			return true;
		}

 

Posted: January 17, 2010 9:13 PM

Hi Mircea,

     Thank you for you detail information, I am able to replicate your issue now. I have fowarded this issue to developer team. I will give you an advance notification as soon as possible when it is ready on our hotfix.

     I hope it helps and please, do not hesitate to ask if you have any other questions. Thank you.

Best Regards,

Andi Santoso

Hi Jocelyn,

     Unfortunately, we do not support that kind of property. However, there is a workaround for this scenario. First, we need to use a client side event of WebGrid_onEndRowEditing. Then, undo it by changing its old and new value of cell according to its validation. Here is the snippet to do so:

function WebGrid1_OnEndRowEditing(controlId, row) {
            var maxValue = 10;
        
            var WebGrid1 = ISGetObject(controlId);
           
            if (row.GetCells().GetNamedItem("UnitPrice").Get("Value") > maxValue) {
                row.GetCells().GetNamedItem("UnitPrice").SetValue(row.GetCells().GetNamedIte                m("UnitPrice").Get("OldValue"), true);
            }
            else {
                row.GetCells().GetNamedItem("UnitPrice").SetValue(row.GetCells().GetNamedIte                m("UnitPrice").Get("Value"), true);
            }
            return true;
        }

      I hope it helps and please, do not hesitate to ask if you have any other questions. Thank you.

Best Regards,

Andi Santoso


Posted: January 14, 2010 9:19 PM

Hi Johnny,

     Actually, you can post any component in this forum. However, you might want to describe on what component you are having problem with. You, also, can attach an result image, code file for us to investigate and share information to other.

     For you issue, we do have a property to do so. It is called "Wildcard Search". In order to do that, open the Smart Tag on your Webcombo, then check the "Allow Wildcard Search", it should give us a filter as “%search%”. I also attached you a screenshot of it. 

     I hope it helps and please, do not hesitate to ask if you have any other questions. Thank you.

Best Regards,

Andi Santoso.

All times are GMT -5. The time now is 1:41 PM.
Previous Next