Use our Google Custom Search for best site search results.
Search
-
Hi,
Open the secondary data source xsd and change the type of that field.
-
Hi,
We cannot change that data type validation message/screentip.
-
Hi,
You are using != in the code. Use <> instead of this. This what they explained in that link.
-
Hi,
Give me the xpath of the drop down list and the xpath of the value you want to show in your drop down list and also give the name of the secondary data source.
-
Hi,
Once go through the below link.
http://www.xtremevbtalk.com/showthread.php?t=146950
-
Hi Harsh,
May I know why do you want to set the value using code?
It is easy that the way I expained in the forum without using code even though you are creating the rows through code.
-
Hi,
Get the ith value using the following expression.
count(../preceding-sibling::my:group2) + 1
get the xpath of the value which you want to display in the drop down (i.e., secondary data source xpath). Place the above expression in the index of repeating group.
For ex: ...
-
Hi,
Once verify root.SelectSingleNode("my:myFields/my:Time", NamespaceManager) is null or not. In your case it is null I think. Use the below code.
If(root.SelectSingleNode("my:myFields/my:Time", NamespaceManager) != null)
{
Dim todaystime As String = root.SelectSingleNode("my:myFields/my:Time", ...
-
Hi,
Use data validations instead of cannot be blank.
-
Hi,
Some where in the code you are setting a value or doing some thing in the on after change event which is calling infinite times (May be you are setting the a value in that field's on after change). Once verify that.