AJAX :: How To Reduce Height Of BalloonPopupExtender
Nov 28, 2012i used baloon popup extender to show alerts but how to reduce its height is aa problem.i have less text in panel to display.so lot of empty space come.
View 1 Repliesi used baloon popup extender to show alerts but how to reduce its height is aa problem.i have less text in panel to display.so lot of empty space come.
View 1 Replieshow to reduce Space of below side in Balloon PopupExtender in ajax?
View 1 Repliesfocus out event is not firing when i use tab key from key board if use mouse its working
HTML:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="ajaxExample.WebForm1" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<!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">
[code]...
I am using ajax control toolkits and ajax extentions in my projects. and as you know it overhead some libraries to page. How can I combine them into 1 js file to reduce requests to server ???
View 2 RepliesI have a program that will update the graph (using zedgraph) every 60 sec. Every update it will reload a new image file, when reloading there always flickering effect. Anyone can advice me to reduce the flickering so that it will look much more smooth than flickering.
View 7 RepliesI have the folllowig css:
div.ListDiv {
width: 750px; /* Table width will be 99% of this */
height: 320px; /* Must be greater than tbody */
overflow: auto;
}
table {
width: 99%; /* 100% of container produces horizontal scroll in Mozilla */
border: none;
}
table>tbody { /* Child selector syntax which IE6 and older do not support */
overflow: auto;
height: 215px;
overflow-x: hidden;
}
thead tr {
position:relative;
top: expression(offsetParent.scrollTop); /* For IE5+ only */
}
thead td {
background-color: #CCCCCC;
font-weight: bold;
}
td {
color: #000000;
text-align: left;
}
table tfoot tr {
position: relative;
overflow-x: hidden;
top: expression(parentNode.parentNode.offsetHeight >= offsetParent.offsetHeight ? 0 - parentNode.parentNode.offsetHeight + offsetParent.offsetHeight + offsetParent.scrollTop : 0);
}
tfoot td {
background-color: #CCCCCC;
}
td:last-child { /* Prevent Mozilla scrollbar from hiding cell content */
padding-right: 20px;
}
When I have a list with 1 or 2, rows the row height automaticaly expand to fill the heigt of the table.
How can I avoid this happening, and have fixed height colimns.
I have a HyperLink inside a panel.
I wonder if the the HyperLinks height can follow along ´automatically´ as the Panels height is changing as the HyperLinks is nested inside the Panel.
Is there a function for this?
[Code]....
If we have more no.of items(suppose 250) in dropdownlist, how to show a minimum extent of height instead of dropdownlist taking complete page height. I have searched all the forums but i didn't get exact answer,
View 2 RepliesI set p { height: 25px ; min-height 25px;} to get the same line height in a form. I works in fine in most browsers. But when I invisible html tags inside p, the p will keep the blank space (25px) is there an alternative css for min-height, to make it work in IE and other browsers? since p always contains html inputs (label, textbox).
View 1 RepliesI am setting HTMLEditor height to 150px. But it look different in different browser. In IE and Crome it is showing me almost same but in Firefox the height becomes to large.
View 3 RepliesHow i can set auto Width and Height? it can be resize according to the data populate inside TabPanel.
View 2 RepliesI have a Panel extended by a ModalPopupExtender. Within the panel is a button that uses javascript to display the width of the panel. I have two other buttons: one to show the popup and one to trigger a postback. All the controls sit within an update panel. Before triggering a postback I can show the popup and the button to display the width works fine. After I cause a postback, though, it always reports 0. Here is the page I have:
[Code]....
how to set Tab Control Auto Width and height
Iam using tab control and my controls are showing outside of the tab
I have a gridview inside a tabcontainer.I'm programitically binding to the gridview. All works fine, data is displayed. And after databinding I'm dynamically setting the tabcontainer height to that of the gridview so that the gridview doesn't overlap the tabcontainer and look all funky.This all works fine doing this...tabcontainer1.height = gridview1.heightUntil there is no data returned, in which case I get a really small tab container.Bascially if there is no data, I want the tabcontainer1.height = 500, and if there is data to set it to the height of the gridview.I tried this (plus other variations) but can't seem to get it to work.
[Code]....
Is there a way to set the max height of a drop down list of a Combo box and use the scroll bars to scroll up and down?
View 1 RepliesI have an update panel with an update progress in it. The update panel's height grows with the length of the dynamic contents. I have the update progress height set to 100% and it is using the page height. How can I get the update progress div height = the update panel height? I have tried javascript and jQuery so far to no avail.
[Code]....
/* Request Info Short Form Pod */
i have an update panel, which contains a repeater inside. The repeater's data source will change on postback. The repeater will generate a div for each item.
I need to set the height of the div that is generated by the update panel to the actual total height of the div inside the repeater.
how to set the aspx page height and width (automatically )or based on control width and height
View 2 RepliesI have a Imagebutton in gridview that displays an image when i click.I am using jaxToolkit:ModalPopupExtender control for display the image.The problem I have is that I only want it to display an image based on another fields like width and Height.After clicking the Image button the image should display exact width and height as in ImageWidth and ImageHeight fields in table.My table structure is
Imageid bigint, ImageWidth bigint,ImageHeight bigint,Image varchar(128)
I have 2 panels in my page with their height is fixed (ex : Panel1.Height = 200px, Panel2.Height = 300px)
I am using CollapsiblePanelExtender to collapse/expand the first Panel by clicking on an ImageButton.
If Panel1 is hidden, change the height of Panel2 = 300 + 200. And if Panel1 is shown, change the height of Panel2 = 300.
How I can do that ?
Ive downloaded AspNetAjaxLibraryBeta0911 and have added both System.Web.Ajax.dll and AjaxControlToolkit.dll from the webforms/debug folder to my [ASP.NET web app] project. I have also added the latter dll to my toolbox. Ive dragged a ToolkitScriptManager onto my aspx page too, and it has created these two reference:
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<%@ Register Assembly="System.Web.Ajax" Namespace="System.Web.UI" TagPrefix="asp" %>
Is that right so far? Now I want to have a custom HTMLEditor, so I created a new folder "App_Code" and created a class calles CustomEditor.cs which has this content:
using AjaxControlToolkit.HTMLEditor;
namespace TestProj.App_Code
{
public class CustomEditor : Editor
{
protected override void FillTopToolbar()
{
TopToolbar.Buttons.Add(new AjaxControlToolkit.HTMLEditor.ToolbarButton.Bold());
TopToolbar.Buttons.Add(new AjaxControlToolkit.HTMLEditor.ToolbarButton.Italic());
TopToolbar.Buttons.Add(new AjaxControlToolkit.HTMLEditor.ToolbarButton.Underline());
}
}
and then I added this to the aspx page:
<%@ Register namespace="TestProj.App_Code" tagprefix="custom" %>
and
<custom:CustomEditor ID="editorMsg" runat="server" />
Firstly, it works. But I have a few problems.
1) In CustomEditor.cs there is no intellisense, and pressing Ctrl + Space bring up no things like "TopToolbar" etc.
2) In the aspx page's designer code I had to add this manually: protected global::AjaxControlToolkit.HTMLEditor.Editor editorMsg; else it wouldnt come up in my code behind. Why isnt it automatically doing that? And is that correct?
3) No matter what I do I cannot make the editor's height smaller than 200px. I set it both inline and in code behind but it still overflows its container and goes to 200. I can however make it more than 200 and also width is fine. Heres a screenshot: [URL]
When I try to set the .ajax__tab_body height to a percentage, it doesn't work. It shrinks it down to the size set by TabContainer inline height value. But when I do width as a percentage, it works perfectly. tab_body css is below:
[Code]....
I am trying to add images and create a slide show in a fixed size div, when I add thumbnail image I would like to have for example 5 thumbnail side by side nad then move to the next row, I am using Ajax ReorderList to add images,how can I achieve this?
View 1 RepliesI have a pretty standard update panel. In the update panel are radio buttons that trigger the update panel to change it's view (list or grid) based on which radio is selected. This works great in every browser except IE8. IE8 doesn't seem to want to update the height of the panel when it's refreshed causing the content are to stay rather large or to not be large enough.You can see it here:http://ccctest.insidehcc.com/Crossroads/Connect/Community-Groups/Video-Library/Spiritual-CPR
[Code]....
I am developing a web application with ASP.NET 3.5 with C# and Telerik Ajax Control. I have a iFrame in my master page. Application load other pages in iFrame dynamically and iFrame height adjust the dynamically when page load. I uses RadScriptManager , RadAjaxPannel, RadAjaxLoadingPannel in my page. The problem is when ajax "call back" the page, iFrame height not adjust dynamically.
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MastetPage.master.cs" Inherits="MastetPage" %>
<!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="Head" runat="server">
<title></title>
[Code]....