ThemeForest

Zice Admin Colorful Admin Templates

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years

Hey,

i try the “Delete” Class for a table, but it doesn’t work. Perhabs i have mistake in my code. You have an idea?

// Confirm Delete. $(".Delete").live('click',function() { var row=$(this).parents('tr'); var dataSet=$(this).parents('form'); var id = $(this).attr("id"); var name = $(this).attr("name"); var data ='id='+id; $.ajax({ type: "POST", url: "delete/delete_mistakes.php", data: data, cache: false, Delete(data,name,row,0,dataSet); }); });

Greetings

Dennis

zicedemo

hi, ds160384

If you want to “delete” Class for a table.

example code in a table (PHP)

...
<a id="<?=your_id?>" class="Delete" name="<?=your_name?>" title="Delete">
     <img src="images/icon/icon_delete.png" />
</a>
...
..

example code in javascript (on click)

    // Confirm Delete.
    $(".Delete").live('click',function() { 
          var row=$(this).parents('tr');
          var dataSet=$(this).parents('form');
          var id = $(this).attr("id");
          var name = $(this).attr("name");
          var data ='id='+id;
          Delete(data,name,row,0,dataSet); // call function Delete
    });

example code in javascript (function Delete)

        function Delete(data,name,row,type,dataSet){
                var loadpage = dataSet.hdata(0);
                var url = dataSet.hdata(1);
                var table = dataSet.hdata(2);
                var data = data+"&tabel="+table;
        $.confirm({
        'title': '_DELETE DIALOG BOX','message': " <strong>YOU WANT TO DELETE </strong><br /><font color="red">' "+ name +" ' </font> ",'buttons': {'Yes': {'class': 'special',
        'action': function(){
                    loading('Checking');
                                     $('#preloader').html('Deleting...');
                                     if(type==0){ 

// you can add ajax here
             $.ajax({ 
                    url: "delete/delete_mistakes.php", 
                    data: data, 
                            success: function(data){    
                  if(data.check==0){   // uncomplete return 0
                      showError('Error : Sorry you can submit agian');
                     unloading();
                     return false;
                  }else{

                                          row.slideUp(function(){   showSuccess('Success',5000); unloading(); }); return false;
}}

},
                                        cache: false,
                                        type: "POST",
                                        dataType: 'json'
                }); 

                                        setTimeout("unloading();",900);          
                         }},'No'    : {'class'    : ''}}});}

example code in PHP (delete_mistakes.php)

<?
//you must return dataType: 'json'
.
....
//your PHP code
...
.
if( /* your delete complete */ ){
     $check='1'; // delete complete return 1
}else{
   $check='0'; // uncomplete return 0
}
$return_arr["check"] = $check;
echo json_encode($return_arr);
?>

you can try it, hope it help you

if you have any problem you can ask me everytime or contact me by email . :) Thank you

pinyo

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years

Hi,

Actually forget about my last message, I just need to RTFM :).

You’re work is really great.

zicedemo

Hi, Thank you so much that you like it !

Hm…..I’m not sure, what you mean about RTFM ??

;) Thank you again.

Default-user

RTFM = read the fucking manual. :)

  • Bought between 10 and 49 items
  • Has been a member for 3-4 years

Hi,

First of all, great template.

I noticed a little problem. I have multiple tabs for my forms (so I don’t have to big forms). I fill in something in tab 1 and go then to tab 2. If I return now to tab 1 the fields are empty and checkboxes that were checked aren’t it anymore.

What could be the problem?

Thanks

Wouter

zicedemo

hi,Wouter

you can go to “js/zice.custom.js” line since 36 … // you can see ” ResetForm(); ” , you can remove or disabled it.

Ex.
....
...
..
          $('.tab_content').fadeOut();        
          $(activeTab).delay(400).fadeIn();        
        //  ResetForm(); // you can remove this
          return false;
..
...
....
you can try it, hope it help you :)

Thank you so much

pinyo

  • Bought between 1 and 9 items
  • Exclusive Author
  • Has been a member for 1-2 years
  • Egypt

very good template , i have a small comment on data table when i click next the checkbox loss the style !

zicedemo

hi, ahmedflx

Do you have screenshot of your problem.?

Thank you for purchase.

Pinyo

  • Bought between 1 and 9 items
  • Exclusive Author
  • Has been a member for 1-2 years
  • Egypt
zicedemo

hi, ahmedflx

thank for bug report. i must edit it,

Thank again, :)

  • Bought between 10 and 49 items
  • Has been a member for 2-3 years

Hi! Your work is excellent! I think it covers my needs. Just have one question: is it possible to make the panels collapsible?

Thanks in advance.

zicedemo

Hi, deushl

Thank you so much that you like it ! I will add in new version ,if you want :)

thank you

Default-user

Thanks for your prompt response, I’ll buy it now, hope you can help me later with the panels. :)

  • Bought between 50 and 99 items
  • France
  • Has been a member for 2-3 years
jaaaab Purchased

Dear ZiceMaster,

Here’s a issue wher we need your wise knowledge:

When we use a checkbox with class ‘on_off_checkbox” into a dynamic table element, checkboxes are well displayed ont the first set of rows, but the ones that are dynamicaly added when you go to next page are shown as normal html checkboxes (your class does not apply as they are dynamically added i presume, same with numberDisplay/per/page).

we need you!

zicedemo

Hi, Jaaaab

Thank you for report. I will edit it. ;)

and please wait for my update about your request. :)

Thank you very much Pinyo.

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years

Hello EveryBody,

Sorry for my english i am french, i have dowload this templates but i don’t know how to do for the multiupload. How to upload a file in a folder, what modified, the PHP file or JS files…

Thanks for your answers.

zicedemo

hi, hanyjulien

Thank you for purchase my theme. :)

In my theme have 2 multiupload file : this one is, you can edit ... go to components/uploadify/uploadify.php (form)

or two is, you want to edit about gallery multiupload you can go to…uploadpics.php

I hope it can help you ;) If you have any problem, I’m glad to help you and please ask me by email because I can fully answer for you and everybody who ask me, too.

Regards Pinyo.

  • Bought between 10 and 49 items
  • Has been a member for 4-5 years

Hello,

They work fine on android ?

Thanks!

zicedemo

hi,

I think it can work good in android. I don’t test on device but I test it on android emulator.

:) Thank you

Pinyo

  • Bought between 10 and 49 items
  • Has been a member for 2-3 years
  • Sold between 1 000 and 5 000 dollars
  • Exclusive Author
  • Denmark

Great theme, I love it! I did find a missing image however, the progressOverlay.png in the ”/images/ui” folder.

Anyway, great theme, I can highly recommend it!

zicedemo

hi

Thank you for good comment and purchase my theme. ;)

  • Bought between 10 and 49 items
  • Has been a member for 3-4 years

I had a hard time choosing between this template vs MWS

http://www.malijuthemeshop.com/themes/mws-admin/form_layouts.html

What I like about MWS is that when I decrease width of screen, MWS will remove the menu bar, which makes MWS are more mobile friendly template.

Is there any way for me to remove the menu bar with Zice at a certain width?

zicedemo

Hi, sharpwitz

Sorry for late reply…

OH, it is to easy if you want to change it. :)

You go to css/zice.style.css … in line 1568 you can see #header and you can change properties

“position:fixed” —> “position:absolute”

I hope it can help you.

Regards Pinyo

  • India
  • Exclusive Author
  • Bought between 50 and 99 items
  • Has been a member for 1-2 years

Hi Zice,

I have doubt regarding tables. I want a table in which only some of the columns are displayed. Rest columns should be unchecked.

Can you tell me what all changes I have to do in Javascript ?

zicedemo

hi,

I don’ t understand about your request. So sorry!

You mean… ? please description it to me, again.

Thanks ;)

Default-user

I will explain like this: As per your datatable example, you hav displayed all the columns by default and you can hide some of them when unchecked.. But is there any way that some of the columns are hide by default i.e. those hidden columns are unchecked.

Thanks in advance :)

zicedemo

hi, samuelindia

Ok.. i see your problem. I think, I maybe understand it.

If it is hidden when it unchecked. You can go to Javascript in js/zice.cuscom.js

In part: datatable (since line 41…) because it is script to control table.

Ex. If you have 5 columns in table. you must config in your code 5 array in “aoColumns”, too. :

"aoColumns": [ { "bSortable": false },{ "bSortable": false },{ "bSortable": false },{ "bSortable": false },{ "bSortable": false } ]  // array of columns  

I hope it can help your problem If I missing your objective, I’m sorry

Best regards Pinyo

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years

Hi, I would buy this item but i have a question. Which kind of problems have you note in IE8 . There is something method of jquery incompatible? Which one? Or problem is about the css cross browsing?

zicedemo

Hi, edigenov

Thank you so much that you like my theme.

In this theme, I developing with CSS3 and HTML5 . It is best working in browser to support them.

But in IE8 , It have something is not good same your idea. However I must try to edit it to work best in IE8 , too. I’m not sure ;)

Regards Pinyo :)

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years

Hey,

i have three little things.

1) Your solution fpr the .delete Class doesn’t work for me, can i contact you via Email?
2) For the next Update: Inline Editing?
3) Is it possible to combine the Loading/Overlay AND the Notify Message Function after load a page?

For Example: Page Loads with the Overlay with TimeOut 1500 and then show the Notify Success Message?

Greetings

Dennis

zicedemo

hi, dennis

1. I glad, you can contact me by email.

2. Oh! what about inline editor you mean. I’m missing your request. please description more to me for next update :)

3. It is okay. I will add example for you. I’m glad to help you.

please contact me by email. I will send file editing for you :)

Thanks Pinyo

  • India
  • Exclusive Author
  • Bought between 50 and 99 items
  • Has been a member for 1-2 years

HI Author,

Could gimme a example page that contains Tab and According…? I actually waiting for that to finish my project.

Thanks in advance ! :)

  • India
  • Exclusive Author
  • Bought between 50 and 99 items
  • Has been a member for 1-2 years

HI Author,

Could gimme a example page that contains Tab and According…? I actually waiting for that to finish my project.

Thanks in advance ! :)

  • Bought between 100 and 499 items
  • Exclusive Author
  • Has been a member for 3-4 years
  • Sold between 1 and 100 dollars

Hi,

Nice looking theme. Questions concerns the gallery.

On the demo, when you change the order on the images in one of the folders,though it says it has ‘saved’ when you click on the image set again the order was as it was originally.

Does this drag-n-drop re-ordering actually work or is it just for show?

Cheers Vic

zicedemo

hi, victoch

Drag-n-drop reordering actually good work because It is working with Mysql.

I test it in my demo. such as drug to delete or re-ordering or drag to cover album or drag to other album when I click “save” and refresh this page. It is work and no problem.

I’m sorry if I miss your objective.

Do you have teamviewer or skype to check my theme??? what it wrong??

I’m glad to help you.

Thank you so much

Pinyo :)

  • India
  • Exclusive Author
  • Bought between 50 and 99 items
  • Has been a member for 1-2 years

HI Author, Could gimme a example page that contains Tab and According…? I actually waiting for that to finish my project. Thanks in advance ! :)

zicedemo

hi ,samuelindia

I will send it to you with email , Thanks you

:)

Default-user

Thanks a lot. My Email is samuelindia@gmail.com

Thanks :)

Default-user

Can you tell me by when you can send it to me? Also, when are you releasing your next update ?

Thanks! :)

zicedemo

hi,

I will send to you tomorrow,

Thank you so much for wating..

:)

Default-user

Hi Author,

I am still waiting for your email on tabs and accordion. Also can you tell me when are you releasing your next update ?

Thanks in advance :)

zicedemo

hi , samuelindia

I sent it (tabs and accordion) with your email (samuelindia@gmail.com), you don’t receive it ??

  • Bought between 50 and 99 items
  • France
  • Has been a member for 2-3 years
jaaaab Purchased

Hi Zice!

2 questions:

-what’s the font you used for the zice logo? can’t find it in the PSD -when can we expect an update solving dynamic tables pages problem (cf. some posts before).

Thanks!

zicedemo

hi,

I will find my zice logo font and my update dynamic table to you by your email in 2 days.

Thank you so much for waiting. :)

zicedemo

hi jaaaab

you can download logo & font file with link

thank you :)

  • Bought between 50 and 99 items
  • France
  • Has been a member for 2-3 years
jaaaab Purchased

Hi Zice,

Thanks a lot. PLS -Butterfly seems missing.

Regards

zicedemo

Hi, jaaaab

you can download Butterfly font :)

Thank you , pinyo

by
by
by
by
by