iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
Handy Hi,
I have upgraded the control ISNet.WebUI.WebTextEditor.dll to 2.0.1000.4.
It seems like it works fine in IE11, but the files are still binary changed on upload in chrome & firefox.
(You can try loading .xls files and see the binary file changes between original file and the uploaded file)
<ISWebTextEditor:WebFileUploader ID="WFU" runat="server" PostbackMode="FlyPostBack" StyleSettings-ButtonStyle-Normal-Width="80px" StyleSettings-ButtonStyle-Active-Width="80px" StyleSettings-ButtonStyle-Over-Width="80px" StyleSettings-ButtonStyle-Normal-Height="23px" StyleSettings-ButtonStyle-Active-Height="23px" StyleSettings-ButtonStyle-Over-Height="23px" Caption="Load file" AllowSimultaneousUpload="false" AllowAdd="false" AllowRemove="false" AllowCancel="false" UploadPath="~/UPLD/" InitialFilesCount="1" Width="300px" FileTypes="*.xls" OnAfterUpload="WFU_OnAfterUpload" OnErrorUpload="WFU_OnErrorUpload" RenderingMode="HTML5"> <FlyPostBackSettings PostControlState="true" PostHiddenFields="true" PostInputControls="true" PostViewState="true" /> <TextSettings ButtonSelectText="Choose file" ButtonUploadText="Load file" ButtonStartOverText="Reload file" /> <ProgressInformation ShowProgressArea="False" ShowProgressBarForTotal="True" ></ProgressInformation> <ClientSideEvents OnAfterUpload="GetNotification" OnError="WFU_OnError" OnFileAdded="WFU_OnFileAdded" OnBeforeUpload="WFU_OnBeforeUpload(false)" /> </ISWebTextEditor:WebFileUploader>
<MenuStyleSettings MenuWindowType="Normal" />
Seemed to fix all issues. Shouldn't it be set as default?
This is surely a work around... It works, but why isn't it API'ed?
Thanks!
Thanks
Seems to be that EnableSection508Standards="true" caused it
Bernard Hi,
Please inform me why there are rendering differences between IE, chrome and FF.
The WebPaneManager is not fully streched to 100% on IE
<%@ Register Assembly="ISNet.WebUI.WebInput" Namespace="ISNet.WebUI.WebControls" TagPrefix="ISWebInput" %> <%@ Register Assembly="ISNet.WebUI.WebDesktop" Namespace="ISNet.WebUI.WebDesktop" TagPrefix="ISWebDesktop" %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head runat="server"> <title></title> <script type="text/javascript"> function WebPaneManager1_OnInitialize(controlId) { var navPane = ISGetObject("WebNavPane1"); return true; } function OnBarClick(Id, BarItem) { } function Redirect(page) { } </script> </head> <body> <form id="form1" runat="server"> <div style="height: 100%; width: 100%;"> <ISWebDesktop:WebPaneManager ID="WebPaneManager1" runat="server" Height="100%" Width="100%" RenderingMode="Quirks" ImagesDirectory="~/Images/" > <RootGroupPane Name="RootGroupPane" Text="Root GroupPane" GroupPaneHeaderVisible="No"> <Panes> <ISWebDesktop:WebPane Height="Custom" HeightValue="45px" Name="Header" Text="Header" ContentScrollable="false" AllowCollapse="No" AllowResize="No" DiscardContainerStyle="false" HeaderVisible="No" ContentMode="UseInlineContent"> <ContentTemplate> <div> </div> </ContentTemplate> </ISWebDesktop:WebPane> <ISWebDesktop:WebGroupPane GroupType="VerticalTile" Name="GroupContent" Text="Group Content"> <Panes> <ISWebDesktop:WebPane AllowCollapse="No" AllowResize="No" Name="Content" Text="Content" ContentMode="UseIFrame" HeaderAppearance="UseSubStyle" HeaderVisible="No" Height="Custom" HeightValue="100%" > <ContentTemplate> </ContentTemplate> </ISWebDesktop:WebPane> <ISWebDesktop:WebPane Name="Side" Text="Side" Width="Custom" WidthValue="250px" AllowCollapse="Yes" HeightValue="100%" AllowResize="Yes" HeaderAppearance="UseSubStyle" HeaderVisible="No"> <ContentTemplate> <div style="display: none;"> <ISWebInput:WebInput ID="hdn_SelectedBarItem" runat="server" Text="" /> </div> <ISWebDesktop:WebNavPane ID="WebNavPane1" runat="server" Height="100%" Width="100%" GripImage="" OnBarClick="OnBarClick"> <Bars> <ISWebDesktop:WebNavBar ContentMode="UseInlineContent" CaptionDisplayMode="TextAndImage" Image="~/Images/Bank_Big.gif" Name="ManageBankPages" Text="xxxx"> <ContentTemplate> ???? </ContentTemplate> </ISWebDesktop:WebNavBar> </Bars> </ISWebDesktop:WebNavPane> </ContentTemplate> </ISWebDesktop:WebPane> </Panes> </ISWebDesktop:WebGroupPane> </Panes> </RootGroupPane> <FrameStyle BackColor="#E0E0E0" BorderColor="#404040" BorderStyle="None" BorderWidth="0px" ForeColor="White"> <BorderSettings> <Top Width="0px" /> </BorderSettings> <Padding Bottom="0px" Left="0px" Right="0px" Top="0px" /> </FrameStyle> <PaneSettings> <HeaderSubStyle BackColor="#E0E0E0" BackColor2="White" BorderColor="Gray" BorderStyle="Solid" BorderWidth="1px" Font-Names="Tahoma" Font-Size="8pt" GradientType="Vertical"> <Padding Bottom="0px" Left="0px" Right="0px" Top="0px" /> </HeaderSubStyle> <InfoTextStyle Font-Names="Tahoma" Font-Size="8pt" ForeColor="White"> </InfoTextStyle> <ContainerStyle BackColor="White" BorderColor="Gray" BorderStyle="Solid" BorderWidth="1px" Font-Names="Tahoma" Font-Size="8pt" ForeColor="Black"> <Padding Bottom="0px" Left="0px" Right="0px" Top="0px" /> </ContainerStyle> <HeaderMainStyle BackColor="DimGray" BackColor2="LightGray" BorderColor="Gray" BorderStyle="Solid" BorderWidth="1px" Font-Bold="True" Font-Names="Arial" Font-Size="12pt" ForeColor="White" GradientType="Vertical"> <BorderSettings> <Top Width="0" /> </BorderSettings> <Margin Bottom="0px" Left="0px" Right="0px" Top="0px" /> <Padding Bottom="0px" Left="0px" Right="0px" Top="0px" /> </HeaderMainStyle> </PaneSettings> <SplitterStyle> <Active BackColor="Black" BaseStyle="Normal"> </Active> <Over BaseStyle="Normal"> </Over> <Normal BackColor="#E0E0E0"> </Normal> </SplitterStyle> <TextSettings InProgressText="" /> <ImagesSettings SplitterGripBottom="SplitterDown.gif" SplitterGripLeft="SplitterLeft.gif" SplitterGripRight="SplitterRight.gif" SplitterGripTop="SplitterUp.gif" InProgress="Loading/loading43.gif" /> <ClientSideEvents OnInitialize="WebPaneManager1_OnInitialize" /> </ISWebDesktop:WebPaneManager> </div> </form> </body> </html>
This also does not render the same (pane is not fully streched):
<%@ Register Assembly="ISNet.WebUI.WebInput" Namespace="ISNet.WebUI.WebControls" TagPrefix="ISWebInput" %>
<%@ Register Assembly="ISNet.WebUI.WebDesktop" Namespace="ISNet.WebUI.WebDesktop" TagPrefix="ISWebDesktop" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head id="Head1" runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div style="height: 100%; width: 100%;">
<ISWebDesktop:WebPaneManager ID="WebPaneManager1" runat="server" Height="100%" Width="100%">
<RootGroupPane GroupType="VerticalTile" Name="RootGroup">
<Panes>
<ISWebDesktop:WebPane Name="Pane0" Text="Pane 0" Height="Fill" HeightValue="100%">
</ISWebDesktop:WebPane>
</Panes>
</RootGroupPane>
</ISWebDesktop:WebPaneManager>
</div>
</form>
</body>
</html>
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname