Yes it showing plus sign in front of TreeNode & I have set Expandable to Always in XML file. This code runs successfully locally on deployment server. I think code doesn't have any problem. I think it might having rights or security level problem. I have deployed application on Windows Server2003.I have given appropiate rights to ASPNet user & IIWP :sigh: Unmon.
UnmeshDesale
Posts
-
IE Web Control Deployment Problem -
IE Web Control Deployment ProblemWhere r u Dear ? I am waiting for ur reply, please help me. Thanks & Regards, Unmesh
-
IE Web Control Deployment ProblemPrivate Function CreateParentTask(ByVal Node As TreeNode, ByVal CatCode As String) As Integer Try _TskXML = New Transactions.BusinessLogic.ActualTaskProgress.TaskPlanTree _TskXML.ProjectCode = _ProjCode _TskXML.CreateXMLForParentTask() Node.TreeNodeSrc = "../XML/PlanParentTask.xml" Node.Databind() Catch ex As Exception Transactions.BusinessLogic.ErrorLog.HandleError("", ex.Message, "FormLeftFrame/CreateParentTask()", Transactions.BusinessLogic.ErrorLog.ErrorType.Critical) End Try End Function In this function _TskXML is object of TASKXML class which generates the XML file for parentTask & childTask.The Code for CreateXMLForParentTask() is: Public Function CreateXMLForParentTask() As Integer Dim prtTask As New DataSet Try prtTask = GetParentTask() Dim ExCol As New DataColumn prtTask.DataSetName = "TREENODES" prtTask.Tables(0).TableName = "TREENODE" prtTask.Tables(0).Columns("TASKDESC").ColumnName = "TEXT" prtTask.Tables(0).Columns("TASKCODE").ColumnName = "ID" prtTask.Tables(0).Columns("TEXT").ColumnMapping = MappingType.Attribute prtTask.Tables(0).Columns("ID").ColumnMapping = MappingType.Attribute prtTask.Tables(0).Columns("EXPANDABLE").ColumnMapping = MappingType.Attribute prtTask.Tables(0).Columns.Remove("ISPARENT") prtTask.Tables(0).Columns.Remove("PARENTTASKCODE") Dim path As String = HttpContext.Current.Server.MapPath("../XML/PlanParentTask.xml") prtTask.WriteXml(path) prtTask.Dispose() Return 0 Catch ex As Exception Transactions.BusinessLogic.ErrorLog.HandleError("", ex.Message, "TaskXML.vb/CreateXMLForParentTask()", ErrorLog.ErrorType.Critical) End Try End Function In this code GetParentTask() returns the dataset which contains the Task that doesn't having any Parent task. This code is working fine on server locally but over internet, this code generates XML file but doesnot bind that XML to TreeNode. :sigh: Thanks & Regards, Unmon
-
Is anybody know how to validate(using javascript) a textbox inside datagridHiii Dear, If ur using server side textbox control then u write following code in ItemDataBound event of the datagrid for binding ur javascript function to textbox. e.Item.Cells(0).Controls(1).Attributes("Onblur") = String.Format("ValidateText({0});", this.ClientID) This will call the ValidateText function for textboxe on which onblur event fires.In that function you can mention one RegExp object for the further validation. It will help you.:) Unmon
-
IE Web Control Deployment ProblemI am using dynamic XML file, it gets generated when user select any node of the treeview.Means For each selected node I am generating it's child node in XML file. When I am accessing application on internet, XML file is generated properly on server.I don't know why it is not binding that XML file to selected tree node. Root(UpperMost) TreeNode appears same as displayed when run on server. I have deployed my application on Window2003 server.:sigh: Please help me. Thanks & Regards, Unmon
-
IE Web Control Deployment ProblemYes I have compared both HTML source file on internet & created on server. XML data is posted on HTML source file created on server but that XML data is not posted on file created on my own m/c i.e. client. Otherwise both files are same, both contains reference to WebCtrlClient directory. But XML file gets created on server with proper data as reply to request from client. Why it happening ?. I think it is not IE web Control issue. I think we are close to solution plz suggest some directions about XML files rights. Waiting For Ur Reply, Regards & Thanks, Unmon. unmon -- modified at 3:16 Friday 26th August, 2005
-
IE Web Control Deployment ProblemYes this problem occurs when I am accessing our web application on internet. This problem occurs both on IE & FireFox. XML file is gets generated on server when I run my application on internet.I have checked that using terminal service.On internet treeview control gets displayed with graphics but not working & tabstrip control is working properly.:( unmon
-
IE Web Control Deployment ProblemYes that event is working when I run that application on deployement server locally by acessing terminal service of that m/c. But when I accessed that application on internet, the tree node didn't get expands. Can please help me ? I think there may be some security or permission issues related to config file. Thanks For Reply.:) Unmon
-
IE Web Control Deployment ProblemYes I have uploaded the all the runtime component. TabStrip control is working properly but TreeView control only gets displayed. It is not expanding the nodes. I am binding it to XML file by setting TreeNodeSrc property. It is working properly on server when application is run locally.:-O unmon
-
IE Web control does not display nodesHello Dear, I think u don't have uploaded or copy the webctrlclient folder in wwwroot folder.This folder contains the runtime resources. It contains images & htc files. See it may help u.:-D Unmon
-
IE Web control does not display nodesHello Dear, I think u don't have uploaded or copy the webctrlclient folder in wwwroot folder.This folder contains the runtime resources. It contains images & htc files. See it may help u.:-D
-
IE Web Control Deployment ProblemHii , I am having problem in IE web controls (Tree View Control) after deployment on server. TabStrip control is working properly but TreeView control is not working. But locally on Server TreeView control is also working but at the time remote access it is not working. Please Help me.:(( Unmon