User Profile & Activity

Member
Posted: May 8, 2013 10:46 AM

Hello Bernard

It's working, thank you so much. You've been such a huge help. I will next time make a new thread.

kroshkabella

Posted: May 7, 2013 2:57 PM

Hello Bernard

I've been working with WebDesktopManager and i need to change the color of shortcuticon text. Is there a way to do it? Can you help me out please.

Thanks,

kroshkabella

Posted: April 15, 2013 3:21 PM

Hello Bernard

It worked, you are our  savior, i still have a little problem;  when i initiate it the first time it still takes 3-5 min to show up, but when i close the window and do it all over again - it's fast. I forgot to mention, maybe its important, that the sliding menu is inside WebDestop procedure.

Thank you for huge help,

kroshkabella

 

Posted: April 12, 2013 8:18 AM

We have a rendering issue on all browser. In IE, the web sliding menu does not render at all. On other browser, it takes up to 3 – 5 minutes, but the menu comes down. We will send response and the sliding menu page. Below is the code and there is an atachment of x.ml file

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="QuickCommands.aspx.vb" Inherits="MyCRIS.QuickCommands" %>
<%@ Register TagPrefix="uc1" TagName="CRISCommandInterface" Src="~/Controls/CRISCommandInterface.ascx"%>
<%@ Register Assembly="ISNet.WebUI.WebEssentials" Namespace="ISNet.WebUI.WebEssentials" TagPrefix="ISWebEssentials" %>
<%@ Register assembly="ISNet.WebUI.WebDesktop" namespace="ISNet.WebUI.WebDesktop" tagprefix="ISWebDesktop" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title></title>
    <style type="text/css">
      
   .mainStyle
{
    height: 610px;
    width: 1000px;
    float: left;
}
.headerTitle
{
    height: 60px;
    width: 100%;
    background-color: #67486d;
    background-image: url(../../images/logo-header.png);
    background-repeat: no-repeat;
}
.contentWSM
{
    width: 100%;
}
.divWSM
{
    width: 300px;
    float: left;
}
.divImage
{
    width: 700px;
    height: 600px;
    float: left;
    overflow: hidden;
}
.divToolStrip
{
      float: left;
}
.headerLeft
{
    text-align: left !important;
}
.iframeStyle
{
    width: 100%;
    height: 100%;
    padding-left: 5px;
}
</style>
</head>
  <script type="text/javascript" language="javascript">
      function WebSlidingMenu1_OnItemClick(controlId, itemObject, itemText) {
          var WebSlidingMenu1 = ISGetObject(controlId);
          var path = itemObject.GetPath() + itemText;
          var itemTextStr = itemText;
//          var itemlength = itemTextStr.indexof("%20");
          itemObject.TargetURL = itemText + ".aspx";
//          if (itemlength = -1) {
//              itemObject.TargetURL = ""
//          }
//          else {
//              itemObject.TargetURL = itemText + ".aspx";
//          }
          if (itemText == "Vehicle%20Registration") {
              itemObject.TargetURL = ""
          }
          else if (itemText == "Driver%20License") {
              itemObject.TargetURL = ""
          }
          else if (itemText == "Wants%20and%20Warrants") {
              itemObject.TargetURL = ""
          }
          else if (itemText == "NCIC%20Inquires") {
              itemObject.TargetURL = ""
          }
          else if (itemText == "Canadian%20Queries") {
              itemObject.TargetURL = ""
          }
          else if (itemText == "Out-of-State%20NLETS") {
              itemObject.TargetURL = ""
          }
          else if (itemText == "CCH/III") {
              itemObject.TargetURL = ""
          }
          else if (itemText == "Property") {
              itemObject.TargetURL = ""
          }
          else if (itemText == "Caution%20Ohio%20Police") {
              itemObject.TargetURL = ""
          }
          else if (itemText == "Automated%20Titling%20File") {
              itemObject.TargetURL = ""
          }
          else if (itemText == "Conceal%20And%20Carry%20Permits") {
              itemObject.TargetURL = ""
          }
          else if (itemText == "Escaped%20Violent%20Felon%20Notification") {
              itemObject.TargetURL = ""
          }
          else if (itemText == "Hit%20Confirmations") {
              itemObject.TargetURL = ""
          }
          return true;
      }
    </script>
<body>
   <form id="form1" runat="server">
      <div id="main" class="mainStyle">
		<div id="contentWSM" class="contentWSM">
			<div class="divWSM">
				<ISWebEssentials:WebSlidingMenu ID="WebSlidingMenu1" runat="server" Caption="Commands"
					DataSourceID="XmlDataSource3" Height="600px" Width="275px" DefaultStyleMode="Silver" 
                    AccessKey="Q" ToolTip="Transaction Commands" ForeColor="Black">
<LayoutSettings TargetWindow="LEADSDesc"></LayoutSettings>
					<ItemStyle>
						<Normal Font-Size="10pt">
						</Normal>
						<Over Font-Size="10pt">
						</Over>
						<Active Font-Size="10pt">
						</Active>
					</ItemStyle>
					<DataBindings>
                        <ISWebEssentials:WebSlidingMenuItemBinding DataMember="root" NameField="Text" 
                            TextField="Name" />
                        <ISWebEssentials:WebSlidingMenuItemBinding DataMember="parent" NameField="Text" 
                            TextField="Text" />
                    </DataBindings>
					<LayoutSettings TargetWindow="LEADSDesc" />
                    <ClientSideEvents OnItemClick="WebSlidingMenu1_OnItemClick" />
					<AlternateItemStyle>
						<Normal Font-Size="10pt">
						</Normal>
						<Over Font-Size="10pt">
						</Over>
						<Active Font-Size="10pt">
						</Active>
					</AlternateItemStyle>
				</ISWebEssentials:WebSlidingMenu>
			    <asp:XmlDataSource ID="XmlDataSource3" runat="server" 
                    DataFile="~/App_Data/LeadsTransaction.xml" XPath="//root">
                </asp:XmlDataSource>
			</div>
			<div class="divImage">
				<iframe name="LEADSDesc" class="iframeStyle"  frameborder="0" src="about:blank">
				</iframe>
			</div>
		</div>
	</div>
      <div id="divInboxRefsh" style="height:50px; width:100%;float:right"></div>     
    </form>
</body>
</html>
             

 

Posted: April 9, 2013 9:14 AM

Hello Bernard

I have another issue if you wold be able to help please

The problem is that the web sliding menu that is a part of the Intersoft web essential takes too long to load.

We are using the sliding menu inside of the webdesktop component. There is a shortcut link on the webdesktop, once it clicked, it opens a webpage that has 4 components on it.

In IE9 and up, the sliding menu does not render at all. In other browser the sliding menu takes up to 15 minutes or more to render.

Any thoughts?

Thank you, kroshkabella

Posted: April 9, 2013 8:30 AM

Good morning Bernard

It worked, thank you so much for your help and being so patient with me.

Best Regards,

kroshkabella

Posted: April 8, 2013 8:08 AM

Good morning Bernard

operating system is Windows 7 professiona; service pack 1; system type is 64bit

I would appreciate the steps to find the HKEY_LOCAL_MACHINE-SOFTWARE-Intersoft Solutions to delete the additional key. thank yo for you help

kroshkabella

Posted: April 5, 2013 7:29 AM

Good morning Bernard

Thank you for responding

The product that my company had bought is WebUI Studio 2012 R1 Premier Subscription(Full Subscription), valid from 6/21/2012 to 6/21/2013.

The only WebCombo.NET gives me the warning that the trial period has expired. We bought this product thru this person and her name is Kathleen  Reich. Here is her email address: kreich@cuyahogacounty.us

And here is  a reference number: ST85951310

I entered all license key numbers using License manager, but WebCombo keeps installing version 5 instead of version 6. I really appreciate any help from you.

best regards,

kroshkabella

All times are GMT -5. The time now is 7:03 AM.
Previous Next