Questions tagged [ontap]
44 questions
0
votes
0 answers
button jerks when pressed after running app in flutter
I have created a tab bar for my own app, I want when I click on an image tab, the image will change to active image, everything is fine, but after running the app, I try to click on it and the image will change. is blinking, and the error only…

Huy Ngô
- 39
- 4
0
votes
0 answers
NetApp ONTAP Ansible playbook working for single cluster, but failing with inventory file setup
Ansible inventory netapp.ontap
I just started to test my first playbooks in Ansible but unfortunately I already fail while setting up an inventory. I am trying to use the module na_ontap_ssh_command (netapp.ontap collection) to run the version…

pprism_
- 3
- 1
0
votes
0 answers
plugin thats monitors ontap av connector in icinga2
can you suggest a good plugin for icinga 2 that can monitor and send alerts if ontap av connector is down? Thank you!
We need a plugin that will send alerts or automatically create a ticket if the host or services is down.

Marie Malik
- 1
- 1
0
votes
0 answers
How to expand a container in flutter with overflowing container in which it is contained ? Flutter
I want to expand my container on click. in Flutter
The green containers are contained within a blueishgrey container. The 5 green containers are in a listview builder. When I tap any of the containers, it needs to expand to its right side.
like in…

Vaishnav k
- 21
- 3
0
votes
0 answers
An otherwise fully-working JS dropdown menu doesn't work with iOS devices. Why?
Context:
StackOverflow members helped me with some javascript to make a portfolio "database" page: basically, multiple artworks in 100+ separate div elements, the divs being filterable by "media-type" from a JS dropdown menu in the nav bar.
For…

Dr No Know
- 5
- 4
0
votes
1 answer
Flutter: Adding inkwell to my gridlist in order to use ontap () is throwing errors
Code is fine until I try and add inkwell()
'''
return Scaffold(
appBar: AppBar(
title: const Text("App Dev and QA process"),
centerTitle: true,
systemOverlayStyle: SystemUiOverlayStyle.dark),
body: AnimationLimiter(
child: GridView.count(
…

fluttergogo
- 93
- 8
0
votes
1 answer
NetApp ONTAP with Python netapp-ontap - create vault policy
I am trying to create a custom policy using netapp-ontap python library, version 9.11.1. I can do the same using the CLI snapmirror policy create as show here where I can specify -type vault. I don't seem to see the way to do this using the Python…

RVid
- 1,207
- 1
- 14
- 31
0
votes
2 answers
Container not changing color until file is refreshed
I want to change color of container onTap from shade of grey to white and everything works alright in my FeedScreen file but in filter file I need to exit and then go back to see the change even tho i did everything exactly same in FeedScreen and…

WhoDoYou
- 3
- 1
0
votes
2 answers
Flutter - GestureDetector - onTap: widget.press(), - final Function press;- Navigator.of(context).push();
This is my first page (RecomendsPlants) and I want to move to another page called (DetailsScreen)
RecomendsPlants:
// ignore_for_file: prefer_const_constructors
import 'package:flutter/material.dart';
import…

Mouniro
- 3
- 4
0
votes
1 answer
How do I make it so that when I click an icon it opens another page file in flutter
How do I make it so that when I click an icon it opens another page file in flutter? I have this icons which when you click them it redirects you to a url, I want to make it so when you click one specific icon instead of opening a url it opens…

CivaaBTW
- 61
- 7
0
votes
2 answers
Flutter - if Textbutton ontap to activate TextButton
My Problem
I want search record page
i want funtion
I made a search bar with TextField,
I hope the ontap function in the TextField works as well as the launcher TextButton.
Code
TextField(
onTap: () {},
decoration: InputDecoration(
hintText:…

김용석
- 11
- 4
0
votes
1 answer
Enable SMB encryption for incoming SMB traffic using REST API
I am trying to enable SMB encryption in ONTAP using the REST API. I know how to do it using the CLI but can't find the rest endpoint to do the same. This is CLI command to do what I am trying to in REST API:
vserver cifs security modify -vserver…

RVid
- 1,207
- 1
- 14
- 31
0
votes
0 answers
Another exception was thrown: Navigator operation requested with a context that does not include a Navigator. any one who can know what to do kindly
Another exception was thrown: Navigator operation requested with a context that does not include a Navigator.
Another exception was thrown: Navigator operation requested with a context that does not include a Navigator.

UZAIR
- 1
0
votes
0 answers
Why NetApp Ontap S3 behaves differently when listing objects?
If I send the same request to two different S3 repositories, AWS S3 and NetApp S3, I get different results with the same set of objets within them:
Set of objects (keys)
tmp01
tmp03
tmp05
tmp06
Look what happens when I send this…

antiocol
- 538
- 4
- 6
0
votes
1 answer
Why the ontap property of gesture detector is not working on a second consecutive tap in flutter?
(ie, ontap > navigation happens > back click, again ontap > no navigation)
GestureDetector(
onTap: () => model.navigateToSetting(),
child: ListTile(
…