hello ,
i have problem when i used tabbar concept with closing button .
this dhtmlx tabber fine work in IE 8 but it doesn’t work in IE 9 ,FF4 and crome.
probem is that i was open more than one tab with enable close button property .when i was click close button of last tab then it is focus on last second tab on browser IE 9,FF 4 and crome .
i dont understand what is the problem?
but when i used IE 8 then this tab concept work fine.
so help me about that problem…
thank u
Richi
hello!
when the last tab is closed, the previous tab gets active. The tabbar library with fixes you may download here:
hello Alexandra,
thanks u reply me .
i want to tell that i used dhtmlx.js file and i didn’t use tabbar.js file .
so how can replace that file .
if we will replace dhtmlx.js to tabber.js file i doesnot understand what i am do right now.
so give me any link about that problem.
Regards
Richi
hello
solve this problem this is urgent.
Try to attach the dhtmlxtabbar.js after dhtmlx.js. Check whether the problem is solved.
If you want to update the dhtmlx.js with the new dhtmlxtabbar.js, you need to generate new dhtmlx.js using libCompliler that is the Suite package (it requires PHP):
You need to replace dhtmlxtabbar.js from the sources and codebase folder in the tabbar folder and then use libCompiler.
hello Alexandra,
thank u for respose me again.
but i dont know how to use libCompiler.
i used dhtmltabber.js with replace dhtmlx.js but my interface is not running that why i dont replace dhtml.js file .this dhtmlx front end i used in asp.net project .
i dont understands how it is solve it.
if u provided new dhtmlx.js file and tell how to use libcompiler .
i m beignners in dhtmlx so help me …
solve this problem n run all browser …
Regards
Richi
Hello,
if u provided new dhtmlx.js file and tell how to use libcompiler .
libCompiler folder is in the Suite package and generates the compiled libraries: dhtmlx.css and dhtmlx.js. You need to open index.html in the Suite package and choose the component you need to include into the libraries. As I have already answered libCompiler requires PHP.
i used dhtmltabber.js with replace dhtmlx.js but my interface
I did not recommend to replace dhtmlx.js with the dhtmlxtabbar.js. You need to include dhtmlxtabbar.js after dhtmlx.js in a page.
hello,
thank u ur advice .
its work but after some time later further problem is there tab is not close.
some issue are still present n didin’t solve both dhtmltabber.js and dhtmlx.js is used.
we are used these two js.
this is a tempary solution so check it and give a proper solution .
i need u so help me …
i waiting ur rply …
regards
Richi
hello ,
i have one problem is also generated when i used dhtmlxtabbar.js.
pervious when i didn’t used dhtmlxtabbar.js then click of link it show only single tab and i clicked more than one times of same link then only show the focus of that tab and not be create another tab of same link.
after we used dhtmlxtabbar.js then click a link then create lot of tab and dont show a focus .
suppose i have link Member Profile .
i click of that link its open only one time after that i’ll click just go focus not be create another tab.
i need ur support …n solve this issue .
regards
Richi
this is a tempary solution so check it and give a proper solution .
Is the problem is solved by using dhtmlxtabbar.js or not ?
pervious when i didn’t used dhtmlxtabbar.js then click of link it show only single tab and i clicked more than one times of same link then only show the focus of that tab and not be create another tab of same link.
What function is called when you clink on the link ?
hello sir,
sorry if u feel bad when i said that this is a tempary solution or not proper solution.
actually i am using FF -4 and IE 9 so ur solution is work fine but sometime latter it is not work properly that why i wrote here this is a tempary solution for my point of views .
second issue come here,when i used dhtmltabbar.js is used when click single link then open lot of tab with same link.
i checked the issue is that when i didnt used dhtmltabbar.js then function goes to dhtmlx.js but when i used dhtmlxtabbar.js than fuction give a first perference dhtmlxtabbar.js
that why it create a lot tab with single link.
i here to mention a function when i used to create a tab
function createnewtab(id,str){
dhxTabbar.addTab(id, str, “*”);
dhxTabbar.setContentHref(id, id);
dhxTabbar.setTabActive(id);
}
so provided a solution for this problem…
thank you
Regards
Richi
Please provide the completed demo (docs.dhtmlx.com/doku.php?id=othe … leted_demo) and detailed instructions how to recreate the problem
hello sir,
I am here to provided my project so you will check this project.
here i upload a tabbardemo.rar file .In this file contain Dhtml folder ,XML folder and index.html page .
my error is that if we are click google tab or any other tab then its create a lot of tab with same url so you will check it.
i want to remove duplicate tab when we click on one tab then its create a more than one tab with same URL. i want to only show the focus if tab opened and not be recreate so this is a problem.
This issue come occur when we used dhtmltabbar.js file.
one problem is that its close button not be close in FF-4 ,Chrome and IE 9
so please check this project and solve my issue .
its my humble request
thank you
Warm Regards,
Richi
TabbarDemo.rar (717 KB)
Hello,
the ids must be unique. And you tried to create several tabs with the same ids.
The following approach creates tab only if such a tab doesn’t exist:
function createnewtab(id,str){
if(!dhxTabbar._tabs[id]){
dhxTabbar.addTab(id, str, "*");
dhxTabbar.setContentHref(id, id);
}
dhxTabbar.setTabActive(id);
}
hello Sir,
Thank you so much .
problem is solve for your solution .
n nice to meet you.
Warm Regards,
Richi