User Profile & Activity

Faraz Hasan Member

Hi Julia,

          We already have the ISNet.WebUI.WebTreeView.Resources.dll  file in the bin folder , Version 1.0.1500.205. When I run the application on IE 6 it work fine with no error, but when i run it on IE 8, i get the error.

It is difficult for me to create a sample project as my application is huge and a bit complex. Is there any other option. Please let me no . Sending you a screenshot of my bin folder.

 

 

Posted: March 31, 2010 3:25 AM

Hi Handy,

                Replication of the issue is a bit difficult, because we are using SQL 2005 and fetching data from different tables,  Access will not fullfill our requirement. We have been using your components since the last 6 years, so be sure we know how to use vitual paging . We were using 2003 components. We have upgraded to 2008 just 10-12 months back. We never had any issues with the old 2003 WebGrid.  But this 2008 webgrid is a bit slow in fetching the data. I am using procedures to get data from the tables.

 

When I click your community link even then I get a blue screen (refer to screenshot) and it takes atleast 1 minute to get  the data, Is this the same issue.  If it is then How did you change the color and can we add some text on it.

 

 

this is just an example of the binding code with procedure.

<ISWebGrid:WebGrid ID="wgAnnualAppraisalAppraiserGoalSheet" runat="server" DataSourceID="sqldsGoalSheet" UseDefaultStyle="True" RuntimeLicenseKey="---------------" Height="200px"> <LayoutSettings GridLines="Vertical" AllowFilter="Default" PagingMode="VirtualLoad" AllowColumnFreezing="Default" AllowColumnSizing="Default" AllowContextMenu="False" RowHeightDefault="" AllowEdit="Yes"> <ClientSideEvents OnRowSelect="wgAnnualAppraisalAppraiserGoalSheet_OnRowSelect" /> </LayoutSettings> <RootTable DataKeyField="GoalsId"> <Columns> <ISWebGrid:WebGridColumn AllowMultiLine="True" Caption="Goals Statement" DataMember="GoalsStatement" EditType="NoEdit" Name="GoalsStatement" Width="180px"> </ISWebGrid:WebGridColumn> <ISWebGrid:WebGridColumn AllowMultiLine="True" Caption="Start Date" DataFormatString="dd-MMM-yyyy" DataMember="StartDate" DataType="System.DateTime" EditType="NoEdit" Name="StartDate" Width="75px"> </ISWebGrid:WebGridColumn> <ISWebGrid:WebGridColumn AllowMultiLine="True" Caption="End Date" DataFormatString="dd-MMM-yyyy" DataMember="EndDate" DataType="System.DateTime" EditType="NoEdit" Name="EndDate" Width="75px"> </ISWebGrid:WebGridColumn> <ISWebGrid:WebGridColumn AllowMultiLine="True" Caption="Appraisee's Rating" DataMember="AppraiseeRating" EditType="NoEdit" Name="AppraiseeRating" WebComboID="wcApprAchRating" Width="70px"> <ValueList DataMember="DefaultView" DataSourceID="dssqlAppraiserAchievementRating" DataTextField="RatingDesc" DataValueField="RatingID"> </ValueList> </ISWebGrid:WebGridColumn> <ISWebGrid:WebGridColumn AllowMultiLine="True" Caption="Validation" DataMember="AppraiserGoalRating" EditType="NoEdit" Name="AppraiserGoalRating" WebComboID="wcApprGoalRating" Width="75px"> <ValueList DataMember="DefaultView" DataSourceID="dssqlApprasierGoalRating" DataTextField="RatingDesc" DataValueField="RatingID"> </ValueList> </ISWebGrid:WebGridColumn> <ISWebGrid:WebGridColumn AllowMultiLine="True" Caption="Appraiser's Rating" DataMember="AppraiserAchievementRating" EditType="NoEdit" Name="AppraiserAchievementRating" WebComboID="wcApprAchRating" Width="85px"> <ValueList DataMember="DefaultView" DataSourceID="dssqlAppraiserAchievementRating" DataTextField="RatingDesc" DataValueField="RatingID"> </ValueList> </ISWebGrid:WebGridColumn> <ISWebGrid:WebGridColumn AllowMultiLine="True" Caption="Submitted By" DataMember="SubmittedByName" EditType="NoEdit" Name="SubmittedByName" Width="70px"> </ISWebGrid:WebGridColumn> </Columns> </RootTable> </ISWebGrid:WebGrid> <asp:SqlDataSource ID="sqldsGoalSheet" runat="server" ConnectionString="<%$ ConnectionStrings:PESystemConnectionString %>" SelectCommandType="StoredProcedure" SelectCommand="ProcPEAnnualAppraiserGoalSheetGetDetails"> <SelectParameters> <asp:Parameter Name="EmpId" Type="Int32" DefaultValue="0" /> </SelectParameters> </asp:SqlDataSource>

 

 

Posted: March 24, 2010 9:37 AM

Hi Glenn,

               Thanks alot , it worked, I made the height fixed and it is now working properly in IE 8.

 

 

 

 

Posted: March 22, 2010 7:50 AM

Hi Glenn,

              We dont have much time as our application is already in the 2nd UAT and has to go live in the next 10 days.  Is there any other alternative to resolve this issue.  

Posted: March 22, 2010 5:39 AM

Hi Glenn,

             If we want to upgrade our Webdesktop from 2.5 to 3.   Then in this case what changes will we have to make in our application. How much will be the cost and are you sure that our issue will be resolved with this.

 

Regards

Faraz

 

Posted: March 22, 2010 4:40 AM

Hi Glenn,

            We are using XHtml.  This is our code. Please suggest.

 

Regards

Faraz

 

<%@ Page Language="VB" AutoEventWireup="true" CodeFile="AnnualAppraiseeIDP.aspx.vb" Inherits="AnnualAppraisalIDP" %><%@ Register Assembly="ISNet.WebUI.WebDesktop" Namespace="ISNet.WebUI.WebDesktop" TagPrefix="ISWebDesktop" %><%@ Register Assembly="ISNet.WebUI.WebInput" Namespace="ISNet.WebUI.WebControls" TagPrefix="ISWebInput" %><%@ Register Assembly="ISNet.WebUI.WebCombo" Namespace="ISNet.WebUI.WebCombo" TagPrefix="ISWebCombo" %><%@ Register Assembly="RadSpell" Namespace="Telerik.WebControls" TagPrefix="radS" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1" runat="server"> <style> .DefaultText

{

font-family:Segoe UI;font-size: 9pt;

}

.DefaultTable

{

width: 100%; height: 100%;

}

</style><

style> <link href="css/all.css" type="text/css" rel="Stylesheet" /> <script language="javascript" src="Scripts/main.js" type="text/javascript"></script> <script type="text/javascript" > function ProgramCombo_OnAfterItemSelected(controlId)

{

// retrieves WebCombo object var programCombo = ISGetObject(controlId);// retrieves WebCombo object var courseCombo = ISGetObject("wcCourses");// set additional filter courseCombo.SetAdditionalFilters("[ProgramId] = " + programCombo.Value);

}

function CoursesCombo_OnBeforeRequest(controlId)

{

// retrieves WebCombo object var programCombo = ISGetObject("wcPrograms");// retrieves WebCombo object var courseCombo = ISGetObject("wcCourses");// set additional filter courseCombo.SetAdditionalFilters("[ProgramId] = " + programCombo.Value);

}

//check validation before submit IDp function checkvalidationonSubmit()

{

// for Training from Company selection //check IDPNeed var txtIDPNeed=document.getElementById("txtIDPNeed").innerText;

txtIDPNeed=txtIDPNeed.replace(/^\s*|\s*$/g,'');

'');if (txtIDPNeed=='')

{

alert (
'Please enter "Development Need" ');document.getElementById("txtIDPNeed").focus();return false;

}

//check Method var methodCombo = ISGetObject("wcMethod");if (methodCombo.Value <=0 )

{

alert (
'Please Select the Development Method.');

methodCombo.SetFocus();

return false;

}

// Check For TODate and From Date // var wiwebInputStartDt = ISGetObject("webInputStartDt"); // var wiwebInputEndDt = ISGetObject("webInputEndDt"); // if (wiwebInputStartDt.GetValueData() > wiwebInputEndDt.GetValueData()) // { // alert('Start Date can not be later than End Date'); // wiwebInputEndDt.SetFocus(); // return false; // } //check Program and Course if (document.getElementById("hdTest").value=="n" )

{

var programCombo = ISGetObject("wcPrograms");if (programCombo.Value <=0 )

{

alert (
'Please Select the Program.');

programCombo.SetFocus();

return false;

}

var courseCombo = ISGetObject("wcCourses");if (courseCombo.Value <=0 )

{

alert (
'Please Select the Course.');

courseCombo.SetFocus();

return false;

}

//check othere Specify if (courseCombo.Text=="Others - Specify")

{

var txtOthers=document.getElementById("txtOthers").innerText;

txtOthers.replace(/(^\s+|\s+$)/g,'');

'');if (txtOthers=='')

{

alert (
'Please enter "Others - Specify" Course');document.getElementById("txtOthers").focus();return false;

}

}

}

else

{

var txtIDPAchieved=document.getElementById("txtIDPAchieved").innerText;

txtIDPAchieved.replace(/(^\s+|\s+$)/g,'');

'');if (txtIDPAchieved=='')

{

alert (
' Please enter "How will it be achieved" ');document.getElementById("txtIDPAchieved").focus();return false;

}

}

}

</script>

</head> <

script>

</head><

head> <body id="body" runat="server" > <form id="form1" runat="server"> <div> <table > <tr align="center"> <td colspan="2" align="left" class="PageTitle"> <asp:Label ID="lblHeading" runat="server" ></asp:Label> </td> </tr> <tr> <td class="text"> &nbsp;<asp:Label ID="lblError" runat="server" CssClass="Msg"></asp:Label></td> <td> &nbsp;</td> </tr> <tr> <td class="text"> <span class="textb">Development Need</span><br />

(Gaps in terms of knowledge, skills, competencies or specific type of experiences)<br />

<br />&nbsp;<br /> </td> <td valign="top"> <asp:TextBox ID="txtIDPNeed" runat="server" Columns="45" CssClass="textAreaChoco" Rows="5" TextMode="MultiLine"></asp:TextBox><label><rads:radspell id="RadSpell1" runat="server" buttonimage="images/spellchecker.gif" buttontype="ImageButton" controltocheck="txtIDPNeed" IsClientID="True"></rads:radspell> </label> </td> </tr> <tr><td colspan="2" style="height:5px"></td></tr> <tr> <td style="width: 234px" class="text" valign="top"> <span class="textb">Development Method</span><br /> (Such as on the job coaching, training, or self learning) </td> <td style="width: 454px" align="left" valign="top"> <table> <tr> <td colspan="2" valign="top"> <ISWebCombo:WebCombo ID="wcMethod" runat="server" DataSourceID="SqlDataSource1" DataTextField="MethodDesc" DataValueField="MethodId" Height="20px" UseDefaultStyle="True" Width="152px" DataMember="DefaultView" AllowAutoPostback="True" runtimelicensekey="H62D8-Q8OW-W81L0"></ISWebCombo:WebCombo> <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:PESystemConnectionString %>" SelectCommand="SELECT [MethodId], [MethodDesc] FROM [PEIDPMethod]"></asp:SqlDataSource> </td> </tr> <tr> <td> <table id="tbshowPrograms" runat="server"> <tr> <td style="width: 100px" class="text">

Select Program</td>

</td><td class="text"> <ISWebCombo:WebCombo ID="wcPrograms" runat="server" DataMember="PEPrograms" DataTextField="ProgramName" DataValueField="ProgramId" Height="20px" UseDefaultStyle="True" Width="200px" OnInitializeDataSource="wcPrograms_InitializeDataSource" AllowAutoPostback="True" runtimelicensekey="H62D8-Q8OW-W81L0"></ISWebCombo:WebCombo> </td> </tr> <tr> <td class="text">

Select Course

</td> <td class="text"> <ISWebCombo:WebCombo ID="wcCourses" runat="server" UseDefaultStyle="True" DataTextField="CourseName" DataValueField="CourseId" Height="20px" Width="200px" DataMember="PECourses" AllowAutoPostback="True" OnInitializeDataSource="wcCourses_InitializeDataSource" runtimelicensekey="H62D8-Q8OW-W81L0"></ISWebCombo:WebCombo> </td> </tr> <tr id="trCourseOthers" valign="top" runat="server"> <td class="text">

Other Specification</td>

</td><td class="text"> <asp:TextBox ID="txtOthers" runat="server" CssClass="textAreaChocosmall" Columns="10" Rows="5" TextMode="MultiLine"></asp:TextBox> </td> </tr> <tr runat="server" valign="top"> <td class="text"> </td> <td align="right" class="text"> <rads:radspell id="RadSpell2" runat="server" buttonimage="images/spellchecker.gif" buttontype="ImageButton" controltocheck="txtOthers" IsClientID="True"></rads:radspell> </td> </tr> </table> </td> </tr> </table> </td> </tr> <tr> <td class="textb" style="height: 45px"> When will it be achieved?</td> <td style="height: 45px"> <table width="80%" border="0" cellspacing="0" cellpadding="0"> <tr> <td style="width: 15%; height: 24px;" class="text"> Start Date</td> <td style="width: 25%; height: 24px;"> &nbsp;<ISWebInput:WebInput ID="webInputStartDt" runat="server" width="100px" runtimelicensekey="O7EN0-CXX7-71PBU"> <DisplayFormat Format="dd-MMM-yyyy" IsEnabled="True"> <ErrorWindowInfo IsEnabled="True"> </ErrorWindowInfo> </DisplayFormat> <HighLight IsEnabled="True"></HighLight> <EditFormat IsEnabled="True" ErrorText="" Format="dd-MMM-yyyy"> <MaskInfo MaskExpression="00-&gt;L&lt;LL-0000"> </MaskInfo> <ErrorWindowInfo IsEnabled="True"> </ErrorWindowInfo> </EditFormat> <DateTimeEditor IsEnabled="True"> </DateTimeEditor> </ISWebInput:WebInput> </td> <td style="width: 15%;text-align:center; height: 24px;" class="text"> End Date&nbsp;&nbsp; </td> <td style="width: 25%; height: 24px;" class="textb" align="left"> <ISWebInput:WebInput ID="webInputEndDt" runat="server" width="100px" runtimelicensekey="O7EN0-CXX7-71PBU"> <DisplayFormat Format="dd-MMM-yyyy" IsEnabled="True"> <ErrorWindowInfo IsEnabled="True"> </ErrorWindowInfo> </DisplayFormat> <HighLight IsEnabled="True"></HighLight> <EditFormat IsEnabled="True" ErrorText="" Format="dd-MMM-yyyy"> <MaskInfo MaskExpression="00-&gt;L&lt;LL-0000"> </MaskInfo> <ErrorWindowInfo IsEnabled="True"> </ErrorWindowInfo> </EditFormat> <DateTimeEditor IsEnabled="True"> </DateTimeEditor> </ISWebInput:WebInput> </td> </tr> </table> </td> </tr> <tr runat="server" id="trHowIDPAchieved"> <td colspan="2"> <div id="divHowIDPAchieved" style="display: block"> <table> <tr> <td style="width: 234px; height: 45px;" class="text"> <span class="textb">How will it be achieved<br /></span>

(Activities to be undertaken to facilitate your development)</td>

</td><td style="width: 454px" valign="top"> <asp:TextBox ID="txtIDPAchieved" runat="server" Columns="45" CssClass="textAreaChoco" Rows="5" TextMode="MultiLine"></asp:TextBox><rads:radspell id="Radspell3" runat="server" buttonimage="images/spellchecker.gif" buttontype="ImageButton" controltocheck="txtIDPAchieved" isclientid="True"></rads:radspell> </td> </tr> </table> </div> </td> </tr> <tr style="position: relative"> <td> </td> <td> <asp:Button ID="btnAdd" runat="server" Text="Add IDP" CssClass="SubButton" OnClientClick="return checkvalidationonSubmit();" /> &nbsp; <input type="button" value="Cancel" onclick="return wbCancel_OnClientClick();" class="SubButton" /> <asp:HiddenField ID="hdTest" runat="server" Value="y" /> </td> </tr> <tr style="position: relative"> <td colspan="2" style="height: 21px"> </td> </tr>

</table>

table></div> </form> <script language="javascript"> function LoadPage()

{

if(document.getElementById("msg") != null)

{

var msg = document.getElementById("msg").value;if(msg == "ANAP")

{

var parentFrame = window.parent;var dlg = parentFrame.ISGetObject("WebDialogBox1");var grid = parentFrame.ISGetObject("wgAnnualAppraisalIDP");

grid.Refresh();

dlg.CloseDialog();

}

else if(msg == "APP")

{

var parentFrame = window.parent;var dlg = parentFrame.ISGetObject("WebDialogBox1");var grid = parentFrame.ISGetObject("wgAppraiseeIDP");

grid.Refresh();

dlg.CloseDialog();

}

else

alert(msg);

}

}

function wbCancel_OnClientClick(controlId, parameter)

{

var parentFrame = window.parent;var dlg = parentFrame.ISGetObject("WebDialogBox1");

dlg.CloseDialog();

return true;

}

LoadPage();

</script>

</body>

</html>

body>

</html>

html>

 

 

All times are GMT -5. The time now is 10:27 PM.
Previous Next